AnalysisCrash.RegexRule.RegexRule C# (CSharp) Method

RegexRule() public method

public RegexRule ( string from, string to ) : System
from string
to string
return System
        public RegexRule(string from, string to)
        {
            this.from = from;
            this.to = to;
        }
RegexRule