- Dec 7, 2010
- 5
- 0
- 18,510
I need to make a string that has the tab command, but without tabbing. IE:
string Text = "\t is the tab command";
Console.WriteLine(Text);
Output would be:
\t is the tab command
string Text = "\t is the tab command";
Console.WriteLine(Text);
Output would be:
\t is the tab command
