Mega Code Archive

 
Categories / C# Tutorial / Development
 

WriteLine

class MainClass {    static void Main()    {          System.Console.WriteLine("This is text 1.");          System.Console.WriteLine("This is text 2.");          System.Console.WriteLine("This is text 3.");    } } This is text 1. This is text 2. This is text 3.