Mono.Cecil.Cil.MethodDebugInformation.MethodDebugInformation C# (CSharp) Method

MethodDebugInformation() private method

private MethodDebugInformation ( MethodDefinition method ) : System
method MethodDefinition
return System
        internal MethodDebugInformation(MethodDefinition method)
        {
            if (method == null)
                throw new ArgumentNullException ("method");

            this.method = method;
            this.token = new MetadataToken (TokenType.MethodDebugInformation, method.MetadataToken.RID);
        }