Home »
.Net »
C# Programs
C# program to demonstrate example of Console.Write() and Console.WriteLine()
C# program to demonstrate example of Console.WriteLine() and Console.Write() – Here, we will print the text using both of the functions.
Submitted by IncludeHelp, on April 06, 2019
Console.Write() and Console.WriteLine() methods are used to print the text (values) on the Console. Console.Write() prints only the text, while Console.WriteLine() prints a new line after the text.
Read more: Difference between Console.WriteLine() and Console.Write() in C#
Example:
// C# program to demonstrate example of
// Console.Write() and Console.WriteLine()
using System;
using System.IO;
using System.Text;
namespace IncludeHelp
{
class Test
{
// Main Method
static void Main(string[] args)
{
Console.WriteLine("This is line1");
Console.WriteLine("This is line2");
Console.Write("This is line3");
Console.Write("This is line4");
//hit ENTER to exit the program
Console.ReadLine();
}
}
}
Output
This is line1
This is line2
This is line3This is line4
C# Basic Programs »