AppActs.API.Model.Device.Resolution.Resolution C# (CSharp) Method

Resolution() public method

public Resolution ( int width, int height ) : System
width int
height int
return System
        public Resolution(int width, int height)
        {
            this.Width = width;
            this.Height = height;
            this.WidthxHeight = string.Concat(width, "x", height);
        }