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
				
		