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