BTDB.IL.ILDynamicTypeDebugImpl.DefineConstructor C# (CSharp) Method

DefineConstructor() public method

public DefineConstructor ( Type parameters ) : IILMethod
parameters System.Type
return IILMethod
        public IILMethod DefineConstructor(Type[] parameters)
        {
            CloseInScope();
            _sourceCodeWriter.StartMethod(_name, null, parameters, MethodAttributes.Public);
            _inScope = true;
            return new ILConstructorDebugImpl(_typeBuilder.DefineConstructor(MethodAttributes.Public, CallingConventions.Standard, parameters), _forbidenInstructions, _sourceCodeWriter);
        }