This C# program demonstrates how write and writeline print messages to the console window. Note that each WriteLine() command creates a new line of text while Write() does not.
using System;
namespace XoaX {
class Program {
static void Main(string[] args) {
Console.Write("In the beginning ");
Console.Write("God created the heavens ");
Console.WriteLine("and the earth. ");
Console.WriteLine("In the beginning ");
Console.WriteLine("God created the heavens ");
Console.WriteLine("and the earth. ");
}
}
}
In the beginning God created the heavens and the earth. In the beginning God created the heavens and the earth. Press any key to continue . . .
© 20072025 XoaX.net LLC. All rights reserved.