CCT.NUI.Core.IntSize.IntSize C# (CSharp) Method

IntSize() public method

public IntSize ( int width, int height ) : System
width int
height int
return System
        public IntSize(int width, int height)
            : this()
        {
            this.Width = width;
            this.Height = height;
        }