在C#中,Print
方法通常用于控制臺(tái)應(yīng)用程序中輸出文本。要使用Print
方法,你需要引用System.Console
命名空間。以下是一個(gè)簡(jiǎn)單的示例,演示了如何在控制臺(tái)應(yīng)用程序中使用Print
方法:
using System;
class Program
{
static void Main()
{
// 輸出文本
Console.Print("Hello, World!");
}
}