my console application in like below :
static void Main(string[] args)
{
string Now = DateTime.Now.ToShortDateString();
if (Now == "2011/08/12")
{
Console.Clear();
Console.Write("Money..........");
Console.Read();
}
else
{
int n = 6;
var result = string.Join("\r\n", from i in Enumerable.Range(1, n)
where i != 2
let stars = Enumerable.Repeat('*', i)
let indent = new string(' ', n - i)
select indent + string.Join(" ", stars));
Console.WriteLine(result);
Console.Read();
}
}
the upper codes are in c#
my questions :
1- how can we find some shape examples in console application like the upper example with *!
the upper example with stars is too simple / i am looking for some better shapes like hanging somebody (just for fun)
2- how can i move console.write window with code ?
3- how can i move shape inside console.write window ?
4- how can i set consol.write window positioning ?
thanks in advance