可能重複:
Creating a constant Dictionary in 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調用。
有沒有一種方法可以結合方法和字典?
那兩個都沒有組合成一個類了嗎? – prashanth