-
Notifications
You must be signed in to change notification settings - Fork 0
/
Score.cs
36 lines (31 loc) · 876 Bytes
/
Score.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace Classic_Snakes_Game_Tutorial___MOO_ICT
{
class Score
{
List<PlayerScore> Scores;
string filePath;
string[] items;
public Score(string _filepath)
{
filePath = _filepath;
Scores = new List<PlayerScore>();
}
public List<PlayerScore> GetAllScores()
{
File.ReadAllLines(filePath);
foreach (var item in File.ReadAllLines(filePath))
{
items = item.Split(',');
if (item.Length < 2) continue;
Scores.Add(new PlayerScore(items[0], Convert.ToInt16(items[1])));
}
return Scores;
}
}
}