Ejemplo n.º 1
0
 public string this[Dictionary <string, string> variables, string name, string defaultValue, bool toLowerCase]
 {
     get
     {
         string v = this[name, defaultValue, toLowerCase];
         return(StringHelper.ReplaceVariables(variables, v));
     }
 }
Ejemplo n.º 2
0
 public string this[Dictionary <string, string> variables, string section, string name, string defaultValue]
 {
     get
     {
         string v = this[section, name, defaultValue];
         return(StringHelper.ReplaceVariables(variables, v));
     }
 }