在 C# 中,要在控制台输出屏幕上打印数据,使用以下方法 – Console.Write()
和 Console.WriteLine()
方法。控制台是系统命名空间的预定义类。而 Write()
和 WriteLine()
都是控制台类方法。
Write()
和 WriteLine()
之间的唯一区别是 Console.Write
用于打印数据而不打印新行,而 Console.WriteLine
用于打印数据并打印新行。
程序1:C# 中的 Console.Write()
示例:
// C# program to show the difference
// between Console.Write and
// Console.WriteLine
using System;
public class GeekDocsDemo{
static void Main(string[] args)
{
// use of Write() method
Console.Write("GeekDocs");
Console.Write("For");
Console.Write("Geeks");
}
}
运行结果如下:
GeekDocsForGeeks
程序 2:C# 中的 Console.WriteLine() 示例。
// C# program to show the difference
// between Console.Write and
// Console.WriteLine
using System;
public class GeekDocsDemo{
static void Main(string[] args)
{
// use of WriteLine() method
Console.WriteLine("GeekDocs");
Console.WriteLine("For");
Console.WriteLine("Geeks");
}
}
运行结果:
GeekDocs
For
Geeks
在上面的代码中,程序 1 显示了每个控制台输出中不包含换行符的输出,程序 2 显示了每个控制台输出中包含换行符的输出。