C# 中 Write() 和 WriteLine() 方法有什么区别?


Write() 和 WriteLine() 方法之间的区别基于新行字符。

Write() 方法会显示输出,但不会提供新行字符。

WriteLine() 方法会显示输出,并在字符串末尾提供一个新行字符,从而为下一输出设置新行。

让我们看一个例子来了解 Write() 和 WriteLine() 方法之间的区别 −

示例

 实时演示

using System;
class Program {
   static void Main() {
      Console.Write("One");
      Console.Write("Two");

      // this will set a new line for the next output
      Console.WriteLine("Three");
      Console.WriteLine("Four");
   }
}

输出

OneTwoThree
Four

更新日期: 2020 年 6 月 22 日

5K+ 浏览

开启你的 职业生涯

通过完成课程和考试获得认证

开始学习
广告