In the following program vertical output is expected using "\v ". Please use \v to get the following output.
1
2
3
4
5
6
7
8
9
10
using System;
namespace _5e11
{
class Table
{
static void Main(string[] args)
{
for (int x = 1; x <= 10; ++x)
{
Console.Write("\v{0}", x);
}
Console.ReadKey();
}
}
}