System.Text.RegularExpressions.RegexTypeCompiler.GenerateCreateInstance C# (CSharp) Method

GenerateCreateInstance() private method

private GenerateCreateInstance ( Type newtype ) : void
newtype System.Type
return void
        internal void GenerateCreateInstance(Type newtype) {
            Newobj(newtype.GetConstructor(new Type[0]));
            Ret();
        }