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

operator() public static method

Determines if two NativePoints are equal.
public static operator ( ) : bool
return bool
		public static bool operator ==(NativePoint first, NativePoint second) {
			return first.X == second.X && first.Y == second.Y;
		}