예제 #1
0
        void IMetric <T> .Add(T result)
        {
            string key = _subDimension.GetKey(result);

            _row[key].Add(result);
        }
예제 #2
0
        void IMetric.Add(IResult result)
        {
            string key = _subDimension.GetKey(result);

            _metricAggregates[key].Add(result);
        }