可能重复:
在 C# 中创建常量字典
我目前有:
public string GetRefStat(int pk) {
return RefStat[pk];
}
private readonly Dictionary<int, int> RefStat =
new Dictionary<int, int>
{
{1,2},
{2,3},
{3,5}
};
这有效,但我使用 RefStat 字典的唯一时间是 GetRefStat 调用它时。
有没有办法可以将方法和字典结合起来?