Skip to main content

Practice ยท 3 of 4

Delimiter CSV

CHALLENGE
Difficulty: beginner+25 XP

Implement static void SaveScores(string path, List<(int Id, string Name, int Score)> rows) writing one id|name|score line per row, and static List<(int Id, string Name, int Score)> LoadScores(string path) parsing them back (missing file โ†’ empty list).

Back to lesson: Practice: File I/O workout