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