UtilSymbolGetSymbols Method
Gets the symbols of the specified file.
Namespace: DevCase.Core.Diagnostics.NativeDllAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
No code example is currently available or this language may not be supported.
- filepath String
-
The .dll or .pdb filepath.
- symbolOptions SymOptionFlags (Optional)
-
The symbol options.
ListSymbolInfo
List(Of SymbolInfo).
This is a code example.
No code example is currently available or this language may not be supported.
Dim library As String = "C:\C++ lib.dll"
For Each symbol As SymbolInfo In GetSymbols(library)
Dim sb As New Global.System.Text.StringBuilder
With sb
.AppendLine(String.Format("Address: {0}", CStr(symbol.Address)))
.AppendLine(String.Format("Flags: {0}", symbol.Flags.ToString()))
.AppendLine(String.Format("Index: {0}", CStr(symbol.Index)))
.AppendLine(String.Format("Module Base Address: {0}", CStr(symbol.ModBase)))
.AppendLine(String.Format("Name: {0}", symbol.Name))
.AppendLine(String.Format("Size: {0}", CStr(symbol.Size)))
.AppendLine(String.Format("Tag: {0}", symbol.Tag.ToString()))
End With
Debug.WriteLine(sb.ToString())
Next symbol
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.