Exemplo n.º 1
0
        private static IEnumerable <string> DumpStrings(Type t)
        {
            var props = ReflectUtil.getPropertiesStartWithPrefix(t, "V");

            return(props.Select(p => $"{p}{TranslationSplitter}{ReflectUtil.GetValue(t, p).ToString()}"));
        }