BExplorer.Shell.Interop.NativePoint.Equals C# (CSharp) Method

Equals() public method

Determines if this NativePoint is equal to another.
public Equals ( object obj ) : bool
obj object Another NativePoint to compare
return bool
		public override bool Equals(object obj) {
			return (obj != null && obj is NativePoint) ? this == (NativePoint)obj : false;
		}