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