Apply() public method

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

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

            return(tpl.Apply(valueGetter));
        }