AppActs.API.Model.Device.Resolution.Resolution C# (CSharp) 메소드

Resolution() 공개 메소드

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