IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IkvmReflectionConstructorSymbol.cs
Go to the documentation of this file.
1using System;
2
4
6{
7
9 {
10
11 readonly ConstructorInfo _underlyingConstructor;
12
21 base(context, module, type, underlyingConstructor)
22 {
23 _underlyingConstructor = underlyingConstructor ?? throw new ArgumentNullException(nameof(underlyingConstructor));
24 }
25
26 internal ConstructorInfo UnderlyingConstructor => _underlyingConstructor;
27
28 }
29
30}
IKVM.Reflection.ConstructorInfo ConstructorInfo
IkvmReflectionConstructorSymbol(IkvmReflectionSymbolContext context, IkvmReflectionModuleSymbol module, IkvmReflectionTypeSymbol type, ConstructorInfo underlyingConstructor)
Initializes a new instance.
Implementation of IModuleSymbol derived from System.Reflection.
Holds references to symbols derived from System.Reflection.
Discovers the attributes of a class constructor and provides access to constructor metadata.