CompareIntPtr() static private method

static private CompareIntPtr ( Playable lhs, Playable rhs ) : bool
lhs Playable
rhs Playable
return bool
示例#1
0
 public static bool operator !=(Playable x, Playable y)
 {
     return(!Playable.CompareIntPtr(x, y));
 }
示例#2
0
 public override bool Equals(object p)
 {
     return(Playable.CompareIntPtr(this, p as Playable));
 }