Пример #1
0
 internal ScoreEntry(DataRow row)
 {
     this = new ScoreEntry();
     this.name = (string) row[0];
     this.attempts = (int) row[1];
     this.time = (long) row[2];
 }
Пример #2
0
 internal ScoreEntry(DataRow row)
 {
     this          = new ScoreEntry();
     this.name     = (string)row[0];
     this.attempts = (int)row[1];
     this.time     = (long)row[2];
 }
Пример #3
0
 public ScoreEntry(string name, int time, int atm)
 {
     this = new ScoreEntry();
     this.name = name;
     this.time = time;
     this.attempts = atm;
 }
Пример #4
0
 public ScoreEntry(string name, int time, int atm)
 {
     this          = new ScoreEntry();
     this.name     = name;
     this.time     = time;
     this.attempts = atm;
 }