示例#1
0
 protected bool Equals(GcMetricName other)
 {
     return Metric == other.Metric && Generation == other.Generation;
 }
 public GcCollectionsSelector(GcMetricName name, SysInfo systemInfo) : base(name, systemInfo)
 {
 }
 protected bool Equals(GcMetricName other)
 {
     return(Metric == other.Metric && Generation == other.Generation);
 }
 public GcCollectionsSelector(GcMetricName name) : this(name, SysInfo.Instance)
 {
 }
示例#5
0
 public GcBenchmarkSetting(GcMetric metric, GcGeneration generation, AssertionType assertionType, Assertion assertion)
 {
     AssertionType = assertionType;
     Assertion     = assertion;
     GcMetricName  = new GcMetricName(metric, generation);
 }