Ejemplo n.º 1
0
 // Properties
 public StatPropSetStg this[Guid formatID]
 {
     get
     {
         StatPropSetStg Stat = new StatPropSetStg();
         Stat.FmtID = formatID;
         int Idx = base.InnerList.IndexOf(Stat);
         if (Idx < 0)
         {
             throw new IndexOutOfRangeException();
         }
         return((StatPropSetStg)base.InnerList[Idx]);
     }
 }
Ejemplo n.º 2
0
 public void Remove(StatPropSetStg stat)
 {
     this.Remove(stat.FmtID);
 }