Ejemplo n.º 1
0
 public ControlledStateDictionary(ControlledStateDictionary <TKey, TValue> sibling)
 {
     if (sibling == null)
     {
         throw new ArgumentNullException("sibling");
     }
     this.locals = sibling.locals;
 }
Ejemplo n.º 2
0
 protected ValuesCollection(ControlledStateDictionary <TKey, TValue> localOwner)
 {
     this.locals = localOwner.locals;
 }