5 references to DefineConstructor
mscorlib (1)
system\reflection\emit\typebuilder.cs (1)
1832constBuilder = DefineConstructor(attributes, CallingConventions.Standard, null);
System (2)
regex\system\text\regularexpressions\RegexCompiler.cs (2)
3203defCtorBuilder = _typebuilder.DefineConstructor(ma, CallingConventions.Standard, noTypeArray); 3280tmoutCtorBuilder = _typebuilder.DefineConstructor(ma, CallingConventions.Standard, new Type[] { typeof(TimeSpan) });
System.Core (1)
Microsoft\Scripting\Compiler\DelegateHelpers.cs (1)
37builder.DefineConstructor(CtorAttributes, CallingConventions.Standard, _DelegateCtorSignature).SetImplementationFlags(ImplAttributes);
System.Data.Entity (1)
System\Data\Objects\Internal\EntityProxyFactory.cs (1)
1665ConstructorBuilder proxyConstructor = typeBuilder.DefineConstructor(constructorAttributes, CallingConventions.Standard | CallingConventions.HasThis, parameterTypes);