Browse Source

Adding header on save

Piotr Czajkowski 3 years ago
parent
commit
86cb862118
1 changed files with 1 additions and 0 deletions
  1. 1 0
      memoQAnalysis/Analysis.cs

+ 1 - 0
memoQAnalysis/Analysis.cs

@@ -117,6 +117,7 @@ namespace memoQAnalysis
             using (var sw = new StreamWriter(path, false, OutputEncoding))
             using (var csv = new CsvWriter(sw, configuration))
             {
+                sw.WriteLine(Header);
                 csv.WriteRecords(Data);
             }
         }