Mono.Cecil.Cil.MethodDebugInformation.MethodDebugInformation C# (CSharp) Méthode

MethodDebugInformation() private méthode

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

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