예제 #1
0
파일: Lottery.cs 프로젝트: Spawek/TopCoder
 public LotteryRecord(string _name, int _choices, int _blanks, bool _sorted, bool _unique)
 {
     name          = _name;
     choices       = _choices;
     blanks        = _blanks;
     sorted        = _sorted;
     unique        = _unique;
     possibilities = Lottery.CalcPossibilities(this);
 }