To output values or print text in C#, you can use the WriteLine()
method:
You can add as many WriteLine()
methods as you want. Note that it will add a new line for each method:
Console.WriteLine("Hello World!");
Console.WriteLine("I am Learning C#");
Console.WriteLine("It is awesome!");
You can also output numbers, and perform mathematical calculations:
There is also a Write()
method, which is similar to WriteLine()
.
The only difference is that it does not insert a new line at the end of the output:
Console.Write("Hello World! ");
Console.Write("I will print on the same line.");
Note that we add an extra space when needed (after "Hello World!" in the example above), for better readability.
In this tutorial, we will only use WriteLine()
as it makes it easier to read the output of code.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!