Ejemplo n.º 1
0
 public void Add(ref MetricStatsKey key, T v)
 {
     this._values.Add(key, v);
 }
Ejemplo n.º 2
0
 public void Update(ref MetricStatsKey key, T v)
 {
     this._values[key] = v;
 }
Ejemplo n.º 3
0
 public bool TryGetValue(ref MetricStatsKey key, out T v)
 {
     return(this._values.TryGetValue(key, out v));
 }