예제 #1
0
파일: BugHound.cs 프로젝트: ulili5/XamJam
 public TrackImpl(BugHound hound, int numInvocations, string methodName)
 {
     this.hound          = hound;
     this.numInvocations = numInvocations;
     this.methodName     = methodName;
     watch.Start();
 }
예제 #2
0
파일: BugHound.cs 프로젝트: ulili5/XamJam
 public Tracker(double probability, BugHound hound)
 {
     this.hound       = hound;
     this.probability = probability;
 }