📜  如何在c#中打印(1)

📅  最后修改于: 2023-12-03 15:38:31.205000             🧑  作者: Mango

如何在C#中打印

在 C# 中,我们可以使用 Console 类来进行打印输出,它提供了一系列的方法来实现不同类型的输出,如字符串、数字、布尔值等等。

输出字符串

如果我们要输出一个字符串,在控制台中可以使用下面的代码:

Console.WriteLine("Hello World!");

运行以上代码,控制台将输出 Hello World!

我们还可以使用 Write 方法来输出字符串,但不会自动换行,需要手动添加换行符。

Console.Write("Hello");
Console.Write(" World!");
Console.WriteLine();

以上代码输出效果与第一个代码段相同。

输出数字

如果我们要输出一个数字,可以使用 WriteLine 方法或 Write 方法,例如:

int number = 123;
Console.WriteLine(number);
Console.Write("The number is: ");
Console.Write(number);
Console.WriteLine();

输出的内容分别为:

123
The number is: 123
输出布尔值

如果我们要输出布尔类型的值,可以使用 WriteLine 方法或 Write 方法,例如:

bool result = true;
Console.WriteLine(result);
Console.Write("The result is: ");
Console.Write(result);
Console.WriteLine();

输出的内容分别为:

True
The result is: True
格式化输出

我们也可以使用字符串插值或者格式化字符串的方式输出内容。

int age = 20;
string name = "John";
Console.WriteLine($"My name is {name} and I'm {age} years old.");
Console.WriteLine(string.Format("My name is {0} and I'm {1} years old.", name, age));

以上代码输出效果相同:

My name is John and I'm 20 years old.
My name is John and I'm 20 years old.

这些是 C# 中常用的打印输出方式,可以满足日常的绝大部分需求。