Escape characters.
using System;
using System.Text;
class StringApp {
static void Main(string[] args) {
string s3 = "Hello\tThere\tAgain";
Console.WriteLine(s3);
Console.WriteLine("Everyone loves \"Hello World\"");
Console.WriteLine("C:\\MyApp\\bin\\debug");
Console.WriteLine("All finished.\n\n\n");
}
}
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
|