c# - WriteLine overlap
Is it possible to write a loop that will write to the console with overlapping text?
Desired output:
Notice how the lines overlap. I was using '|' vertically and 开发者_如何学编程'-' horizontally.
The vertical line is the 4th column and the horizontal line is the 3rd row.
I know this is way off:
for (int i = 1; i <= 4; i++)
{
Console.Write(" | ");
for (int x = 1; x <= 6; x++)
{
Console.Write(" - ");
}
}
Try Extended ASCII Codes. These might help you draw pretty pseudographics:
╒╥╦╫
精彩评论