c#全局变量如何定义及引用

avatar
作者
筋斗云
阅读量:0

C#中全局变量可以通过使用static关键字来定义,全局变量可以在整个程序中使用,例如:

public class GlobalVariables {     public static int globalInt = 10;     public static string globalString = "Hello"; } 

要引用全局变量,可以直接使用类名来访问,例如:

int myInt = GlobalVariables.globalInt; string myString = GlobalVariables.globalString; 

这样就可以在任何地方引用全局变量globalIntglobalString

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!