Esempio n. 1
0
 public override bool Equals(object other)
 {
     if (other is StaticObjectNodeReference)
     {
         StaticObjectNodeReference p = (StaticObjectNodeReference)other;
         return(Index == p.Index);
     }
     else
     {
         return(false);
     }
 }
Esempio n. 2
0
 public T this[StaticObjectNodeReference index]
 {
     get { return(Data[index.Index]); }
     set { Data[index.Index] = value; }
 }
Esempio n. 3
0
 public ref   T this[StaticObjectNodeReference index] => ref Data[index.Index];