Ejemplo n.º 1
0
 public WCFRectangle(WCFPoint location, WCFSize size)
 {
     this.location = location;
     this.size     = size;
 }
Ejemplo n.º 2
0
 public WCFRectangle(int x, int y, int width, int height)
 {
     this.location = new WCFPoint(x, y);
     this.size     = new WCFSize(width, height);
 }
Ejemplo n.º 3
0
 public static Size ToNET(WCFSize s)
 {
     return(new Size(s.Width, s.Height));
 }