public void Add(HashKey Value)
 {
     if (this.InnerList.Count <= 9)
     {
         this.InnerList.Add(Value);
     }
 }
 public void Add(HashKey Value)
 {
     if (this.InnerList.Count <= 9)
     {
         this.InnerList.Add(Value);
     }
 }
 public void Add(HashKey Value)
 {
     if (this.InnerList.Count > 9)
     {
         return;
     }
     this.InnerList.Add((object)Value);
 }
 public void Remove(HashKey Value)
 {
     this.InnerList.Remove(Value);
 }
 public void Remove(HashKey Value)
 {
     this.InnerList.Remove((object)Value);
 }
 public void Add(HashKey Value)
 {
     if (this.InnerList.Count > 9)
     return;
       this.InnerList.Add((object) Value);
 }