在C#,要在控制台输出屏幕上打印数据,请使用以下方法 -控制台.Write()和控制台.WriteLine()方法。安慰是一个预定义的类系统命名空间。尽管Write()和WriteLine()两个都是控制台类方法。
两者之间唯一的区别是Write()和WriteLine()就是Console.Write用来打印数据不打印新行,同时Console.WriteLine 用于打印数据以及打印新行。
程序1:C# 中的 Console.Write() 示例。
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");
}
}
输出:
GeeksForGeeks
程序2:C# 中的 Console.WriteLine() 示例。
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");
}
}
输出:
Geeks For Geeks
在上面的代码中,程序 1 显示的输出在每个控制台输出中不包含换行符,程序 2 显示的输出在每个控制台输出中包含换行符。
相关用法
- C# Console.WindowLeft用法及代码示例
- C# Console.WindowWidth用法及代码示例
- C# Console.MoveBufferArea()用法及代码示例
- C# Console.Clear用法及代码示例
- C# Console.MoveBufferArea用法及代码示例
- C# Console.OpenStandardError用法及代码示例
- C# Console.OpenStandardInput用法及代码示例
- C# Console.Read()用法及代码示例
- C# Console.ReadKey()用法及代码示例
- C# Console.SetBufferSize()用法及代码示例
- C# Console.SetCursorPosition()用法及代码示例
- C# Console.SetError()用法及代码示例
- C# Console.SetIn()用法及代码示例
- C# Console.SetOut()用法及代码示例
- C# Console.SetWindowPosition()用法及代码示例
- C# Console.SetWindowSize()用法及代码示例
- C# Console.ReadLine()用法及代码示例
- C# Console.ResetColor()用法及代码示例
- C# Console.OpenStandardOutput()用法及代码示例
- C# Console.TreatControlCAsInput用法及代码示例
- C# Console.Read和Console.ReadLine的区别用法及代码示例
- C# Convert.ToBase64String()用法及代码示例
- C# Convert.ToBase64CharArray()用法及代码示例
- C# Convert.FromBase64String(String)用法及代码示例
- C# Convert.GetTypeCode(Object)用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Difference between Console.Write and Console.WriteLine in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。