public static List <string> GetParamStrings(this IConfigParameterContext context, string name, char separator)
 {
     return(context.ConfigParameters.GetParamStrings(name, separator));
 }
 public static int GetParamInt(this IConfigParameterContext context, string name)
 {
     return(context.ConfigParameters.GetParamInt(name));
 }
 public static bool GetParamBool(this IConfigParameterContext context, string name)
 {
     return(context.ConfigParameters.GetParamBool(name));
 }
 public static string GetParamString(this IConfigParameterContext context, string name)
 {
     return(context.ConfigParameters.GetParamString(name));
 }