コード例 #1
0
 public bool Contains(ClaimCode Index)
 {
     foreach (object key in Dictionary.Keys)
         if (((ClaimCode)key).Equals(Index))
             return true;
     return false;
 }
コード例 #2
0
 public int Add(ClaimCode Key)
 {
     return List.Add(Key);
 }
コード例 #3
0
 public void Add(ClaimCode Index)
 {
     Dictionary.Add(Index, new WeekDayHoursDictionary());
 }
コード例 #4
0
 public WeekDayHoursDictionary this[ClaimCode index]
 {
     get { return (WeekDayHoursDictionary)Dictionary[index]; }
     set { Dictionary[index] = value; }
 }