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

DynamicILInfo() private method

private DynamicILInfo ( DynamicScope scope, DynamicMethod method, byte methodSignature ) : System
scope DynamicScope
method DynamicMethod
methodSignature byte
return System
        internal DynamicILInfo(DynamicScope scope, DynamicMethod method, byte[] methodSignature)
        {
            m_method = method;
            m_scope = scope;
            m_methodSignature = m_scope.GetTokenFor(methodSignature);
            m_exceptions = new byte[0];
            m_code = new byte[0];
            m_localSignature = new byte[0];
        }
        #endregion