欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C# Console.Write();和Console.WriteLine();区别详解。

程序员文章站 2022-06-19 12:32:55
Console.Write();和Console.WriteLine();区别详解: Console.Write();,专业:将指定的字符串值写入标准输出流。通俗:控制台输出,不换行。 示例代码: 1 using System; 2 using System.Collections.Generic; ......

console.write();和console.writeline();区别详解:

console.write();,专业:将指定的字符串值写入标准输出流。通俗:控制台输出,不换行。

示例代码:

C# Console.Write();和Console.WriteLine();区别详解。
 1 using system;
 2 using system.collections.generic;
 3 using system.linq;
 4 using system.text;
 5 using system.threading.tasks;
 6 
 7 namespace test001
 8 {
 9     class program
10     {
11         static void main(string[] args)
12         {
13             console.write("a");
14             console.write("b");
15 
16             console.readkey();
17         }
18     }
19 }
view code

示例结果:

C# Console.Write();和Console.WriteLine();区别详解。

C# Console.Write();和Console.WriteLine();区别详解。

console.writeline();,专业:将指定的字符串值(后跟当前行终止符)写入标准输出流。通俗:控制台输出,会换行。

示例代码:

C# Console.Write();和Console.WriteLine();区别详解。
 1 using system;
 2 using system.collections.generic;
 3 using system.linq;
 4 using system.text;
 5 using system.threading.tasks;
 6 
 7 namespace test001
 8 {
 9     class program
10     {
11         static void main(string[] args)
12         {
13             console.writeline("a");
14             console.writeline("b");
15 
16             console.readkey();
17         }
18     }
19 }
view code

示例结果:

C# Console.Write();和Console.WriteLine();区别详解。