KeyValuePair的使用

Posted chenze-index

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KeyValuePair的使用相关的知识,希望对你有一定的参考价值。

 Dictionary<string, string> dc = new Dictionary<string, string>();

前台页面:

        <div id="tb">
            @if (ViewBag.data != null)
            
                foreach (KeyValuePair<string, string> item in ((System.Collections.Generic.Dictionary<string, string>)ViewBag.data))
                
                    <input type="hidden" name="@item.Key" value="@item.Value" />
                
            
        </div>

 

以上是关于KeyValuePair的使用的主要内容,如果未能解决你的问题,请参考以下文章

Hashtable、Dictionary 和 KeyValuePair 有啥区别?

由于无参数构造函数,使用IMultipleResults从存储过程填充KeyValuePair失败

LINQ 更改 dict 中的 KeyValuePair

Protobuf-net 对 Dictionary/KeyValuePair 的支持如何工作?

在 LINQ 查询中将 KeyValuePair 转换为匿名类型

当我尝试使用 List<KeyValuePair<string, string>> 作为参数之一调用成员时,Type.InvokeMember 引发 MissingMethod