public Size(Size other) { _wd = other._wd; _ht = other._ht; }
public Size CopyFrom(Size other) { _wd = other._wd; _ht = other._ht; return(this); }