C# Class CsDebugScript.Exceptions.InvalidMemoryAddressException

Thrown when user wants to access address that is not available in the process being debugged.
Inheritance: System.Exception
Mostra file Open project: southpolenator/WinDbgCs

Public Methods

Method Description
InvalidMemoryAddressException ( ulong address ) : System

Initializes a new instance of the InvalidMemoryAddressException class.

Method Details

InvalidMemoryAddressException() public method

Initializes a new instance of the InvalidMemoryAddressException class.
public InvalidMemoryAddressException ( ulong address ) : System
address ulong The accessed address.
return System