VSNDK.DebugEngine.AD7MemoryAddress.Subtract C# (CSharp) Метод

Subtract() публичный Метод

Subtracts a specified value from the current context's address to create a new context. (http://msdn.microsoft.com/en-ca/library/bb146285.aspx)
public Subtract ( ulong dwCount, IDebugMemoryContext2 &ppMemCxt ) : int
dwCount ulong The number of memory bytes to decrement.
ppMemCxt IDebugMemoryContext2 Returns a new IDebugMemoryContext2 object.
Результат int
        public int Subtract(ulong dwCount, out IDebugMemoryContext2 ppMemCxt)
        {
            ppMemCxt = new AD7MemoryAddress(m_engine, (uint)dwCount - m_address);
            return VSConstants.S_OK;
        }