跳至内容

面向初学者的 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
        */
    }
 }
华夏公益教科书