📅  最后修改于: 2023-12-03 15:09:08.864000             🧑  作者: Mango
在 C# 中,我们可以使用 Console.WriteLine()
方法来打印文本。
下面是一个简单的示例:
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
这个程序将输出 "Hello, World!" 到控制台上。
我们可以使用占位符 {0}
, {1}
等来将变量的值格式化输出。
例如,下面是一个示例程序:
using System;
class Program
{
static void Main(string[] args)
{
string name = "Tom";
int age = 25;
Console.WriteLine("My name is {0} and I am {1} years old.", name, age);
}
}
这个程序将输出 "My name is Tom and I am 25 years old." 到控制台上。
我们可以使用 Console.ForegroundColor
和 Console.BackgroundColor
属性来设置控制台输出的前景色和背景色。
例如,下面是一个示例程序:
using System;
class Program
{
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.Blue;
Console.WriteLine("This is some text in yellow on blue.");
Console.ResetColor();
}
}
这个程序将输出 "This is some text in yellow on blue." 并设置前景色为黄色,背景色为蓝色,然后重置颜色为默认设置。
在 C# 中,使用 Console.WriteLine()
方法可以很方便地在控制台上打印文本。我们还可以使用占位符来格式化输出,以及使用 Console.ForegroundColor
和 Console.BackgroundColor
属性来设置控制台输出的颜色。