To display a line, Console.Write() is used in C#.
Console displays the result on the console. I have first set a string.
string str = "Tom Hanks is an actor";
Now displaying the above line.
Console.WriteLine(str);
The following is the complete code −
Example
using System;
namespace Program {
public class Demo {
public static void Main(String[] args) {
string str = "Tom Hanks is an actor";
Console.WriteLine("Displaying a line below");
Console.WriteLine(str);
Console.ReadLine();
}
}
}Output
Displaying a line below Tom Hanks is an actor