Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Difference between Console.Write and Console.WriteLine in C#

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

In C#, to print the data on the console output screen the following method are used – Console.Write() and Console.WriteLine() method. Console is a predefined class of System namespace. While Write() and WriteLine() both are the Console Class methods.

The only difference between the Write() and WriteLine() is that Console.Write is used to print data without printing the new line, while Console.WriteLine  is used to print data along with printing the new line.

Program 1: Example of Console.Write() in C#.

C#




// C# program to show the difference
// between Console.Write and 
// Console.WriteLine
    
using System;
  
public class GFG{
    
    static void Main(string[] args)
    {
        // use of Write() method
        Console.Write("Geeks");
        Console.Write("For");
        Console.Write("Geeks");
    }
}

Output:

GeeksForGeeks

Program 2: Example of Console.WriteLine() in C#.

C#




// C# program to show the difference
// between Console.Write and 
// Console.WriteLine
    
using System;
  
public class GFG{
    
    static void Main(string[] args)
    {
        // use of WriteLine() method
        Console.WriteLine("Geeks");
        Console.WriteLine("For");
        Console.WriteLine("Geeks");
    }
}

Output:

Geeks
For
Geeks

In the above code, program 1 shows the output without including the newline in the each console output and program 2 shows the output including the newline in the each console output.


My Personal Notes arrow_drop_up
Last Updated : 26 May, 2020
Like Article
Save Article
Similar Reads