我想定义一个全局都能引用的变量并且在给他赋值之后他的值不会被系统自动删除
3 回答
慕容森
TA贡献1853条经验 获得超18个赞
例如:
Common.cs
namespace Common
{
public static class AppInfo
{
public static string AppVersion ="2.1.1";//应用程序版本号
public static string AppCompanyName="公司名称";//公司名称
}
}
app.cs
using System;
using Common;
class Test
{
static void Main()
{
Console.WriteLine("Application Version:{0}",AppInfo.AppVersion);
Console.WriteLine("Application Company name:{0}",AppInfo.AppCompanyName);
}
}
执行命令编译 csc app.cs Common.cs
- 3 回答
- 0 关注
- 1233 浏览
添加回答
举报
0/150
提交
取消