BExplorer.Shell.Interop.NativePoint.Equals C# (CSharp) Метод

Equals() публичный Метод

Determines if this NativePoint is equal to another.
public Equals ( object obj ) : bool
obj object Another NativePoint to compare
Результат bool
		public override bool Equals(object obj) {
			return (obj != null && obj is NativePoint) ? this == (NativePoint)obj : false;
		}