Exemplo n.º 1
0
 internal Enumerator(HistogramBuckets histogramMeasurements)
 {
     this.histogramMeasurements = histogramMeasurements;
     this.index           = 0;
     this.Current         = default;
     this.numberOfBuckets = histogramMeasurements.SnapshotBucketCounts.Length;
 }
Exemplo n.º 2
0
 internal Enumerator(HistogramBuckets histogramMeasurements)
 {
     this.histogramMeasurements = histogramMeasurements;
     this.index           = 0;
     this.Current         = default;
     this.numberOfBuckets = histogramMeasurements.AggregatedBucketCounts == null ? 0 : histogramMeasurements.AggregatedBucketCounts.Length;
 }