System.SmallRect.SmallRect C# (CSharp) Метод

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

public SmallRect ( int left, int top, int right, int bottom ) : System.Runtime.InteropServices
left int
top int
right int
bottom int
Результат System.Runtime.InteropServices
		public SmallRect (int left, int top, int right, int bottom)
		{
			Left = (short) left;
			Top = (short) top;
			Right = (short) right;
			Bottom = (short) bottom;
		}
	}
SmallRect