Ejemplo n.º 1
0
 protected static RowEntry WithName(string key, params IValueWrapper <string>[] other)
 {
     IValueWrapper <string>[] array = new IValueWrapper <string> [other.Length + 1];
     array[0] = StatisticsCategory.V(StatisticsCategory.ExtractName(key));
     Array.Copy(other, 0, array, 1, other.Length);
     return(new RowEntry(key, array));
 }
Ejemplo n.º 2
0
        private void OnKeyChanged()
        {
            string key = this.Key;

            this.Group = StatisticsCategory.ExtractGroup(key);
        }