Esempio n. 1
0
 public int this[dataId id] {
     get {
         return(dataArray[(int)id]);
     } set {
         dataArray[(int)id] = value;
     }
 }
Esempio n. 2
0
 public bool this[dataId point] {
     get {
         return(bitSet[(int)point]);
     }
     set {
         bitSet[(int)point] = value;
     }
 }