System.Text.RegularExpressions.RegexTypeCompiler.GenerateCreateInstance C# (CSharp) 메소드

GenerateCreateInstance() 개인적인 메소드

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