VSNDK.DebugEngine.AD7MemoryAddress.Add C# (CSharp) Method

Add() public method

Adds a specified value to the current context's address to create a new context. (http://msdn.microsoft.com/en-ca/library/bb145861.aspx)
public Add ( ulong dwCount, IDebugMemoryContext2 &newAddress ) : int
dwCount ulong The value to add to the current context.
newAddress IDebugMemoryContext2 Returns a new IDebugMemoryContext2 object.
return int
        public int Add(ulong dwCount, out IDebugMemoryContext2 newAddress)
        {
            newAddress = new AD7MemoryAddress(m_engine, (uint)dwCount + m_address);
            return VSConstants.S_OK;
        }