Ancestry.Daisy.Statements.ReflectionStatementDefinition.MethodNameToRegex C# (CSharp) Method

MethodNameToRegex() static private method

static private MethodNameToRegex ( string name ) : Regex
name string
return System.Text.RegularExpressions.Regex
        internal static Regex MethodNameToRegex(string name)
        {
            return new Regex("^"+NormalizeMethodName(name)+"$",RegexOptions.IgnoreCase | RegexOptions.Compiled);
        }