Exemplo n.º 1
0
 public void changeRight(EndOfLines newEnd)
 {
     this.endRight = newEnd.R();
     if (changed != null)
     {
         changed(this, new Test(2));
     }
 }
Exemplo n.º 2
0
 public Line(int len, EndOfLines left, EndOfLines right)
 {
     this.body     = new string('-', len);
     this.endLeft  = left.L();
     this.endRight = right.R();
 }
Exemplo n.º 3
0
 public void changeRight(EndOfLines newEnd)
 {
     this.endLeft = newEnd.R();
 }