摘要:
//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 { ... 阅读全文