Hi all,
I'm having problems understanding errors within a RegEx class I've got: (Please bare with me, I'm not an experienced C# programmer).
The class works (or did work when passing arguments from the command line using the .exe generated by the class.
What I have try to do is pass the class string values directly from the program page itself.
Here is the program page:
using
namespace
{
Receipe_Class_test =
}
Here is the Class page
// Alternative version of the ValidateInput method that does not create Regex instances.
public static bool ValidateInput(string regex, string input)
// Test if the specified input matches the regular expression.
return Regex.IsMatch(input, regex);
}*/