Exemple #1
0
 public Event(BugEvent r, Bug one, Bug two, string info)
 {
     this.r = r;
     b = one;
     dup = two;
     text = info;
 }
Exemple #2
0
 public Event(BugEvent r, string info)
     : this(r,null,null,info)
 {
 }