public void Sync(ResolutionChecker.ScreenInfo rhs)
 {
     this.Size        = rhs.Size;
     this.AspectRatio = rhs.AspectRatio;
     this.IsLandscape = rhs.IsLandscape;
 }
 public ScreenInfo(ResolutionChecker.ScreenInfo rhs)
 {
     this.Sync(rhs);
 }