public Score(Team team, Round round) { this.Team = team; Multiplier = 1.0f; Round = round; team.AddScore(this); }
public static Team FromString(string line) { string[] split = line.Split(','); Team t = new Team(split[1], int.Parse(split[0])); if (split.Length == 3) { t.Notebook = int.Parse(split[2]); } return t; }