Ejemplo n.º 1
0
 public void Deconstruct(out int Index, out GoodRect Rect)
 {
     Index = this.Index;
     Rect  = this.Rect;
 }
Ejemplo n.º 2
0
 public IntRect(int index)
 {
     Index = index;
     Rect  = new GoodRect(-index, -index - 1, index + 1, index + 2);
 }