C# use of Tab characters in variables
Tab characters can be used in variables in the form of escape sequences (\t for the tab character) as shown below
Console.WriteLine("Name\tAge");
The output will be:
Visual Studio .NET Tips and Tricks, VB.NET Code Samples, C# Code Snippets, ASP.NET Code Samples, .NET Tips and Tricks.
C# use of Tab characters in variables
Tab characters can be used in variables in the form of escape sequences (\t for the tab character) as shown below
Console.WriteLine("Name\tAge");
The output will be:
1 comments:
Except \t doesn't work with in Label controls.
Post a Comment