在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
对,没有全局变量这个概念了
public class GVar { public static string szName = " "; public static int nAge = 0; } // 在这个类里面使用GVar类中的变量 public class MyForm : System.Windows.Forms { ... public void fun() { // 这里相当于使用全局变量(其他地方用法也一样) GVar.szName = "Bill "; GVar.nAge = 10; } }
|
请发表评论