C# Class CsDebugScript.MemoryRegionFinder

Helper class that is doing searches over memory regions to find where address is located.
Afficher le fichier Open project: southpolenator/WinDbgCs

Méthodes publiques

Méthode Description
Find ( ulong address ) : int

Finds the index of memory region where the specified address is located or -1 if not found.

MemoryRegionFinder ( MemoryRegion regions ) : System

Initializes a new instance of the MemoryRegionFinder class.

Method Details

Find() public méthode

Finds the index of memory region where the specified address is located or -1 if not found.
public Find ( ulong address ) : int
address ulong The address.
Résultat int

MemoryRegionFinder() public méthode

Initializes a new instance of the MemoryRegionFinder class.
public MemoryRegionFinder ( MemoryRegion regions ) : System
regions MemoryRegion The memory regions.
Résultat System