Exemple #1
0
 public static String Apply(String formatWithNames, IDictionary<String, object> data)
 {
     var tpl = new StringTemplate(formatWithNames);
     return tpl.Apply(data);
 }
Exemple #2
0
        public static String Apply(String formatWithNames, IDictionary <String, object> data)
        {
            var tpl = new StringTemplate(formatWithNames);

            return(tpl.Apply(data));
        }
Exemple #3
0
 public static String Apply(String formatWithNames, NamedValueGetter valueGetter)
 {
     var tpl = new StringTemplate(formatWithNames);
     return tpl.Apply(valueGetter);
 }
Exemple #4
0
        public static String Apply(String formatWithNames, NamedValueGetter valueGetter)
        {
            var tpl = new StringTemplate(formatWithNames);

            return(tpl.Apply(valueGetter));
        }