示例#1
0
 public Match(Club Home, Club Away, int HomeGoals, int AwayGoals)
 {
     this.HomeClub = Home;
     this.AwayClub = Away;
     this.HomeScore = HomeGoals;
     this.AwayScore = AwayGoals;
 }
示例#2
0
 public void ToStringTest()
 {
     Club target = new Club("Liverpool");
     Assert.AreEqual("Liverpool", target.ToString());
 }