c# print在哪使用

c#
小樊
88
2024-09-19 20:03:18

在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!");
    }
}

0