C# Class CsDebugScript.MemoryRegionFinder

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

Public Methods

Method 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 method

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.
return int

MemoryRegionFinder() public method

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