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

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

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.
Результат System
		public NativePoint(int x, int y)
			: this() {
			X = x;
			Y = y;
		}