예제 #1
0
파일: Song.cs 프로젝트: needspeed/VotemUp
 public bool vote(Vote vote)
 {
     return votes.addVote(vote);
 }
예제 #2
0
파일: Votes.cs 프로젝트: needspeed/VotemUp
 public Boolean addVote(Vote vote)
 {
     bool exists = votes.Contains(vote);
     if (!exists) votes.Add(vote);
     return !exists;
 }