在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#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。