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