如何从密钥对值(来自模型)中单独获取名称和值?

时间:2014-07-14 07:46:06

标签: c#

我已经在模型中初始化了此列表的get set属性现在,我需要获取下面提到的每个循环中该属性的值和名称

foreach (DictionaryEntry value in Model)
                {
                    // value.value (name) and value.Value 

                   // I need to get the values and key name in this For each loop
                }

2 个答案:

答案 0 :(得分:0)

foreach (DictionaryEntry value in Model)
                {
                    var modelValue = value.Value;
                    var modelKey = value.Key;
                }

答案 1 :(得分:0)

每次迭代都会公开字典中的每个单独的键值对。因此,价值将具有关键和价值

value.Key
value.Value