public static bool Match(string value, string expression, bool add_asterisks, ref string error)
 {
     return(WildcardExpression.Parse(expression, add_asterisks, ref error).IsMatch(value));
 }
 public static WildcardExpression Parse(string value, ref string error)
 {
     return(WildcardExpression.Parse(value, false, ref error));
 }