Kazaam nailed it, you're not actually reading from a file. Check out the File.ReadAllLines
method for more details on how to do that easily.
Then, I'd suggest using lines.Select(x => ...)
to turn each line of text (a string) into an object with what I guess is a score and a name. After that you can order the list before finalizing it with .ToList()