UtilDnLibGetMethods(ModuleDefMD, String) Method

Gets all the Methods defined in a existing Type inside a .NET assembly.

Definition

Namespace: DevCase.ThirdParty.DnLib
Assembly: 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<MethodDef> GetMethods(
	ModuleDefMD assembly,
	string typeName
)

Parameters

assembly  ModuleDefMD
The assembly.
typeName  String
The name of the type to find.

Return Value

ReadOnlyCollectionMethodDef
A ReadOnlyCollectionT containing the methods defined (including nested Types) inside a .NET assembly.

Remarks

Note: Some functionalities of this assembly may require to install one or all of the listed NuGet packages:

dnlib by 0xd4d

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also