TestDic=new Dictionarystring, string> (); TestDic.Add("0"_c# for循环遍历字典">
当前位置:   article > 正文

C# for循环遍历字典里面的所有元素

c# for循环遍历字典
using System.Linq;//添加引用
using System;
 [ContextMenu("DebugTest")]
    public void MoviePlay()
    {
        Dictionary<string, string> TestDic=new Dictionary<string, string> ();
        TestDic.Add("0","00");
        TestDic.Add("1", "01");
        TestDic.Add("2", "02");
        TestDic.Add("3", "03");
        TestDic.Add("4", "04");
        TestDic.Add("5", "05");
        for (int i = Convert.ToInt32(TestDic.Keys.First().ToString()); i < TestDic.Keys.Count + Convert.ToInt32(TestDic.Keys.First().ToString()); i++)
        {
            Debug.Log(i+ TestDic[i.ToString()]);
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

调用
这里写图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/977708
推荐阅读
相关标签
  

闽ICP备14008679号