public bool Equals(HandleBase p)
 {
     // Equals if p not null and handle is the same
     return ((object)p != null && rawPtr == p.rawPtr);
 }
Example #2
0
 public bool Equals(HandleBase p)
 {
     return(p != null && this.rawPtr == p.rawPtr);
 }