UtilDnLibGetTypes(ModuleDefMD) Method
Gets all the Types defined (including nested Types) inside a .NET assembly.
Namespace: DevCase.ThirdParty.DnLibAssembly: DevCase.net48.ThirdParty.DnLib (in DevCase.net48.ThirdParty.DnLib.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static ReadOnlyCollection<TypeDef> GetTypes(
ModuleDefMD assembly
)
Public Shared Function GetTypes (
assembly As ModuleDefMD
) As ReadOnlyCollection(Of TypeDef)
Dim assembly As ModuleDefMD
Dim returnValue As ReadOnlyCollection(Of TypeDef)
returnValue = UtilDnLib.GetTypes(assembly)
public:
static ReadOnlyCollection<TypeDef^>^ GetTypes(
ModuleDefMD^ assembly
)
static member GetTypes :
assembly : ModuleDefMD -> ReadOnlyCollection<TypeDef>
No code example is currently available or this language may not be supported.
- assembly ModuleDefMD
-
The assembly.
ReadOnlyCollectionTypeDef
A
ReadOnlyCollectionT containing the
Types defined (including nested Types) inside a .NET assembly.
Note: Some functionalities of this assembly may require to install one or all of the listed NuGet packages:
dnlib by 0xd4d
This is a code example.
No code example is currently available or this language may not be supported.
Dim assembly As ModuleDefMD = LoadAssembly("C:\Application.exe")
Dim types As ReadOnlyCollection(Of TypeDef) = GetTypes(assembly)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.