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