I've got this code:
List<string[]> list = File.ReadLines(@"bin\save.dat") .Select(r => r.TrimEnd('#').Split(',')) .ToList(); Console.WriteLine(File.ReadLines(@"bin\save.dat"));
But it keeps returning System.IO.ReadLinesIterator
I've tried other things on the forum but nothing has worked for me.