When I\'m saving content of the String[] array with System.IO.File.WriteAllLines, at the end of a file is always left a blank line. For example:
System.IO.Fi
To get rid of the trailing newline, the best solution would be, when you read it with .ReadAllLines() to actually dismiss the last element from your array of strings.
.ReadAllLines()