Ejemplo n.º 1
0
        private static string GetFeatureName(IChild feature)
        {
            var split = feature.ToString().Split('.');

            if (split.Length > 0)
            {
                return(split.Last());
            }
            return(feature.ToString());
        }
Ejemplo n.º 2
0
 private static string GetFeatureName(IChild feature)
 {
     var split = feature.ToString().Split('.');
     if (split.Length > 0)
     {
         return split.Last();
     }
     return feature.ToString();
 }