C# 对字典类型进行操作,Dictionary

1:继承层次机构

System.Object 
 System.Collections.Generic.Dictionary<TKey, TValue>
   
System.ServiceModel.MessageQuerySet

属性:

keys:键集合

values:值集合

count:数目

comparer:比较键是否相等

小列子:

   
               Dictionary<, > oscar =  Dictionary<, >, , , , , 
               oscar.Remove(
                (!oscar.ContainsKey()) oscar.Add(, 
               Console.WriteLine(
               Console.WriteLine( (KeyValuePair<, > kvp 
              Dictionary<, >.KeyCollection keyColl =
              Console.WriteLine( ( s 
              Dictionary<, >.ValueCollection valueColl =
              Console.WriteLine( ( s 
               slove =  (oscar.TryGetValue(,


你可能感兴趣的:(C# 对字典类型进行操作,Dictionary)