BTDB.IL.ILMethodDebugImpl.ILMethodDebugImpl C# (CSharp) Метод

ILMethodDebugImpl() публичный Метод

public ILMethodDebugImpl ( MethodBuilder method, SourceCodeWriter sourceCodeWriter, string name, Type returnType, Type parameters, IILGenForbidenInstructions forbidenInstructions ) : System
method System.Reflection.Emit.MethodBuilder
sourceCodeWriter SourceCodeWriter
name string
returnType System.Type
parameters System.Type
forbidenInstructions IILGenForbidenInstructions
Результат System
        public ILMethodDebugImpl(MethodBuilder method, SourceCodeWriter sourceCodeWriter, string name, Type returnType, Type[] parameters, IILGenForbidenInstructions forbidenInstructions)
        {
            _method = method;
            _sourceCodeWriter = sourceCodeWriter;
            _name = name;
            _returnType = returnType;
            _parameters = parameters;
            _forbidenInstructions = forbidenInstructions;
            _expectedLength = 64;
        }