C#中沒有全局變量的概念,可以定義一個common類,通過靜態變量來存放所有需要的全局變量,調用的時候通過common來調用即可。 例如, public static class common // static 不是必須 { public static float [ , ] farray = new float [ 2, 3]; private static string name = "cc"; public static string Name { get { return name;} set { name = value;} } } 調用的時候使用“命名空間.common.屬性名”即可,例如 string m_name = common.Name ; common.farray [0, 2] = 0.5 .