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

Size() public method

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