如何在静态类中声明静态字典对象?我试过了
public static class ErrorCode
{
public const IDictionary<string, string> ErrorCodeDic = new Dictionary<string, string>()
{
{ "1", "User name or password problem" }
};
}
但是编译器抱怨“ 除了字符串以外的引用类型的const字段只能用null初始化 ”。