You could use
File.ReadAllLines to read the contents of the file to an array of string, each element a line, and access the last char of the second-to-last line using lines[lines.Length-2][lines[lines.Length-2].Length-1] (a bit messy, hope you figure it out
)