System.Reflection.Emit.DynamicILGenerator.DynamicILGenerator C# (CSharp) Method

DynamicILGenerator() private method

private DynamicILGenerator ( DynamicMethod method, byte methodSignature, int size ) : System
method DynamicMethod
methodSignature byte
size int
return System
        internal unsafe DynamicILGenerator(DynamicMethod method, byte[] methodSignature, int size) 
            : base(method, size) 
        {
            m_scope = new DynamicScope();
            m_methodSigToken = m_scope.GetTokenFor(methodSignature);
        }