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