码迷,mamicode.com
首页 > 其他好文 > 详细

KeyValuePair的使用

时间:2019-06-19 14:58:30      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:type   sys   使用   collect   new   name   col   generic   hid   

 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的使用

标签:type   sys   使用   collect   new   name   col   generic   hid   

原文地址:https://www.cnblogs.com/chenze-Index/p/11051129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!