示例#1
0
 public bool Equals(IGraphXVertex other)
 {
     if (other is null)
     {
         return(false);
     }
     return(ID == other.ID);
 }
示例#2
0
 public bool Equals(IGraphXVertex other)
 {
     return this == other;
 }
示例#3
0
 public bool Equals(IGraphXVertex other)
 {
     return(this == other);
 }
 public bool Equals(IGraphXVertex other)
 {
     return(Equals(this, other));
 }
示例#5
0
 public bool Equals(IGraphXVertex other)
 {
     return Equals(this, other);
 }