gpt4 book ai didi

c# - 设置私有(private)词典

转载 作者:行者123 更新时间:2023-11-30 20:01:15 29 4
gpt4 key购买 nike

<分区>

我有一个 Dictionary<string, int> 的工作示例.我需要设置 Dictionaryprivate 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

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com