C#的程序结构
https://www.runoob.com/csharp/csharp-program-structure.html
上述链接中写的很清楚,需要补充的内容如下:
1.关于Main方法
Main为程序的入口点,每个程序有且仅有一个入口点(程序开始执行的位置),方法名规定为Main,其声明语句为
public static int Main() 或
public static void Main()
2.关于几个输入、输出语句的区别
Console.Write(); 输出不换行
Console.WriteLine(); 输出并换行
Console.ReadLine(); 读取键盘输入的所有字符,返回字符串。按下回车键退出
Console.Read(); 读取键盘输入的第一个字符,返回其对应的ASCII值。按下回车键退出
Console.ReadKey(); 等待用户按下任意键并执行退出,(此函数的作用是为了在控制台窗口停留一下,直到用户敲击键盘为止。不然运行时,“Hello World!” 这句话会在控制台窗口一闪而过,没法查看。)
3 关于类对象成员
https://www.cnblogs.com/AhuntSun-blog/p/11730106.html