UtilPeHeaderGetPEFileKind(String) Method
Gets the PEFileKinds of the specified .NET assembly.
Namespace: DevCase.Core.Diagnostics.AssemblyAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static PEFileKinds GetPEFileKind(
string filepath
)
Public Shared Function GetPEFileKind (
filepath As String
) As PEFileKinds
Dim filepath As String
Dim returnValue As PEFileKinds
returnValue = UtilPeHeader.GetPEFileKind(filepath)
public:
static PEFileKinds GetPEFileKind(
String^ filepath
)
static member GetPEFileKind :
filepath : string -> PEFileKinds
No code example is currently available or this language may not be supported.
- filepath String
-
The assembly file path.
PEFileKinds
The resulting
PEFileKinds.
This is a code example.
No code example is currently available or this language may not be supported.
Dim assemblyPath As String = "C:\Assembly.exe"
Dim peFileKind As PEFileKinds = GetPEFileKind(assemblyPath)
Console.WriteLine(peFileKind.ToString())
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.