跳至內容

面向初學者的 C Sharp/簡介

來自華夏公益教科書,面向開放世界的開放書籍
 class HelloWorldProgram
 {
    public static void Main()
    {
        System.Console.WriteLine("Hello, world!"); // prints some text on to the screen
        System.Console.ReadKey(); /* waits for the user
        to press a key
        */
    }
 }
華夏公益教科書