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