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