Console.WriteLine("Hello World");
Console.Write("C# Programming");
System.Console.WriteLine("this is how to print");
Console.WriteLine(/*something like "hello"*/);
Console.Write(/*something like "hello"*/);
MessageBox.Show("Hello World");
Console.WriteLine("Your Text Here")
Console.WriteLine("Prints on a new line");
Console.Write("Prints on the same line");
MessageBox.Show("I Love Khloud");
Debug.Log("This is C# programming"); //for Unity
Console.WriteLine("Anything Inside the quotation marks");
Console.WriteLine("Nepal");
Console.WriteLine(/* your content here */);
Console.WriteLine("Print");
String yourname = "Mr. Nice";
Console.WriteLine("Hello {0}", yourname);
Console.WriteLine("Hello Guys");
Console.Write("hello World!")