System.Text.RegularExpressions.CompiledRegexRunnerFactory.CompiledRegexRunnerFactory C# (CSharp) Method

CompiledRegexRunnerFactory() private method

private CompiledRegexRunnerFactory ( DynamicMethod go, DynamicMethod firstChar, DynamicMethod trackCount ) : System.Reflection.Emit
go System.Reflection.Emit.DynamicMethod
firstChar System.Reflection.Emit.DynamicMethod
trackCount System.Reflection.Emit.DynamicMethod
return System.Reflection.Emit
        internal CompiledRegexRunnerFactory (DynamicMethod go, DynamicMethod firstChar, DynamicMethod trackCount) {
            this.goMethod = go;
            this.findFirstCharMethod = firstChar;
            this.initTrackCountMethod = trackCount;
            //Debug.Assert(goMethod != null && findFirstCharMethod != null && initTrackCountMethod != null, "can't be null");
        }