CASCExplorer.Wildcard.Wildcard C# (CSharp) Method

Wildcard() public method

Initializes a wildcard with the given search pattern.
public Wildcard ( string pattern, bool matchStartEnd ) : System.Text.RegularExpressions
pattern string The wildcard pattern to match.
matchStartEnd bool
return System.Text.RegularExpressions
        public Wildcard(string pattern, bool matchStartEnd)
            : base(WildcardToRegex(pattern, matchStartEnd))
        {
        }

Same methods

Wildcard::Wildcard ( string pattern, bool matchStartEnd, RegexOptions options ) : System.Text.RegularExpressions