3.6静态类 类只包含静态方法,属性,字段该类就是静态的 不能创建静态类实例 using System; /// <summary> ///StaticClass 静态类 /// </summary> static class StaticClass { //静态成员 public static int i; //静态属性 public static string s { get { return "Hello"; } } //静态构造函数 static StaticClass() { } //静态方法 public static void HelperMethod() { } } //调用 Response.Write(StaticClass.s)