我有一个工作示例Dictionary<string, int>
。我需要将 a 设置Dictionary
为 aprivate Dictionary
并检查该值。
目前我有:
protected void btnSubmit_Click(object sender, EventArgs e)
{
Dictionary<string, int> docTypeValue = new Dictionary<string, int>();
docTypeValue.Add("OSD", 1);
docTypeValue.Add("POD", 2);
docTypeValue.Add("REC", 3);
docTypeValue.Add("CLAINF", 4);
docTypeValue.Add("RATE", 5);
docTypeValue.Add("OTHER", 6);
docTypeValue.Add("CARINV", 7);
docTypeValue.Add("PODDET", 8);
docTypeValue.Add("BOLPO", 9);
litText.Text = docTypeValue[txtDocType.Text].ToString();
}
这按预期工作。我需要使用房产吗?即下面
private Dictionary<string, int> DocTypeValue
{
get;
set;
}
我如何重构上面的内容来创建建议的内容private Dictionary
?