zoukankan      html  css  js  c++  java
  • Dissecting the First C# Program "HelloWorld"

    //Tells the complier that this program uses types from the System namespace.
    using System; 
    //Declares a new namespace, called HelloWorld
    //A namespace is a set of type declarations associated with a name. namespace HelloWorld { //Declares a new class type, called Program class Program { //Declares a method called Main as a member of class Program //Main is a special function used by the complier as the starting point of the program. static void Main(string[] args) { //Contains only a single, simple statement; this line constitutes the body of Main. //Simple statements are terminated by a semicolon. //This statement uses a class called Console, in namespace System, to print out the message to a window on the screen //Without the using statement in line 1, the compiler wouldn't have known where to look for class Console. Console.WriteLine("Hello World!"); } } }
  • 相关阅读:
    0529学习进度条
    0523-学习进度条
    0515-学习进度条
    实验三-进程模拟调度
    0501-学习进度条
    0424-学习进度条
    0422—操作系统作业调度
    0415-同学博客评价
    0414-复利计算再升级
    0409-学习进度条
  • 原文地址:https://www.cnblogs.com/limeina/p/3518645.html
Copyright © 2011-2022 走看看