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

NativePoint() public method

Initialize the NativePoint
public NativePoint ( int x, int y ) : System
x int The x coordinate of the point.
y int The y coordinate of the point.
return System
		public NativePoint(int x, int y)
			: this() {
			X = x;
			Y = y;
		}