我在编译这些代码行时出错:
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace test
{
public class testing
{
public static readonly string IN_TABLE_KEY = "IN";
public static readonly string OUT_TABLE_KEY = "OUT";
public static readonly string TODAY_TABLE_KEY = "TODAY";
public static readonly Dictionary<string, string> TEST =
new Dictionary<string, string>()
{
{ IN_TABLE_KEY, "TEST1"},
{ OUT_TABLE_KEY, "TEST2"},
{ TODAY_TABLE_KEY, "TEST3"}
};
}
}
我真的不明白,这段代码无法编译,我不知道这个错误是关于语法还是代码中的其他地方。
这是我得到的语法错误:
; 预期 类、结构或接口成员声明中的无效标记“{” 命名空间不直接包含成员,例如字段或方法 类型或命名空间定义,或预期文件结尾
谢谢你。