Mega Code Archive

 
Categories / C# Tutorial / Development
 

Using the n Character to Insert a Newline

class MainClass {   static void Main()   {       System.Console.Write("\"this is a test.\"");       System.Console.Write("\n\"Wait 'til I get going!\"\n");   } }