Beispiel #1
0
 public Line(Line line)
 {
     Symbols = new List <Symbol> (line.Symbols);
 }
Beispiel #2
0
 // For conveniency
 public static Line operator +(Line lhs, Line rhs)
 {
     return(Line.Add(lhs, rhs));
 }