Exemple #1
0
 public Lines(Lines l)
 {
     foreach (var line in l.lines)
     {
         this.lines.Add(line.Key, line.Value);
     }
 }
 public LinesManager(string filePath)
 {
     FilePath = filePath;
     Lines = new Lines();
 }
 public LinesManager(Lines lines, string filePath)
 {
     Lines = lines;
     FilePath = filePath;
 }
 public LinesManager()
 {
     Lines = new Lines();
     FilePath = null;
 }