THIS IS VERY IMPORTANT PLEASE HELP ME
Can you write C# program to draw lines and rectangles using ASCII symbols.Lines can be horizontal, vertical or diagonal (45°). Program must be in Console Application. Please help me.I really need to help this is very important for me.

Posted Dec 28, 2011, 6:19 PM
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine();
for(int x=0; x<10; ++x)
{
Console.Write("{0}", "-");
}
Console.WriteLine("\n");
for (int x = 0; x < 10; ++x)
{
Console.WriteLine("{0, 5}", "|");
}
Console.WriteLine("{0, 10}", "/");
Console.WriteLine("{0, 9}", "/");
Console.WriteLine("{0, 8}", "/");
Console.WriteLine("{0, 7}", "/");
Console.WriteLine("{0, 6}", "/");
Console.WriteLine("{0, 5}", "/");
Console.WriteLine("{0, 4}", "/");
Console.WriteLine("{0, 3}", "/");
Console.WriteLine("{0, 2}", "/");
Console.WriteLine("{0, 1}", "/");
Console.ReadKey();
}
}
}
Satyapriya NayakPosted Dec 28, 2011, 3:00 AM
Select a Category:
Subject:*
Details:*
Properly.
In Subject we should use specific keyword related to the topic of your question.So that you can get the result quickly.Rather writing the below will not help you
Very urgent!!
Please solve it.
THIS IS VERY IMPORTANT PLEASE HELP ME?
Thanks
Sam HobbsPosted Dec 27, 2011, 9:26 PM