博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# Dictionary 字典用法 记录
阅读量:4933 次
发布时间:2019-06-11

本文共 394 字,大约阅读时间需要 1 分钟。

Dictionary 使用

using System.Collections.Generic;

Create Dictionary

Dictionary<decimal, int> dicCIUType = new Dictionary<decimal, int>();

Add to Dictionary

dicCIUType.Add(id, Type);

 

Search in Dictionary

            foreach (KeyValuePair<decimal, int> kvp in dic)

            {

                if (kvp.Key == id)

                {

                    continue;

                }

                if (kvp.Value == Type)

                {

                    return false;

                }

            }

转载于:https://www.cnblogs.com/mantian/archive/2013/01/04/2844489.html

你可能感兴趣的文章