C# Class CsDebugScript.Engine.Utility.MemoryBuffer

Helper structure that holds pointer to memory buffer or byte array
显示文件 Open project: southpolenator/WinDbgCs

Public Methods

Method Description
MemoryBuffer ( byte bytes ) : System

Initializes a new instance of the MemoryBuffer class.

MemoryBuffer ( byte bytePointer, int length ) : System

Initializes a new instance of the MemoryBuffer class.

Private Methods

Method Description
MemoryBuffer ( ) : System

Method Details

MemoryBuffer() public method

Initializes a new instance of the MemoryBuffer class.
public MemoryBuffer ( byte bytes ) : System
bytes byte The bytes.
return System

MemoryBuffer() public method

Initializes a new instance of the MemoryBuffer class.
public MemoryBuffer ( byte bytePointer, int length ) : System
bytePointer byte The byte pointer.
length int The length of the buffer.
return System