Ejemplo n.º 1
0
        public ISymbolScope GetScope(int offset)
        {
            ISymUnmanagedScope scope;

            method.GetScopeFromOffset((uint)offset, out scope);
            return(scope == null ? null : new SymbolScope(scope));
        }
Ejemplo n.º 2
0
        public ISymbolScope GetScope(int offset)
        {
            ISymUnmanagedScope retVal = null;

            m_unmanagedMethod.GetScopeFromOffset(offset, out retVal);
            return(new SymScope(retVal));
        }
Ejemplo n.º 3
0
        public ISymbolScope GetScope(int offset)
        {
            ISymUnmanagedScope unmanagedScope;

            HRESULT.ThrowOnFailure(_unmanaged.GetScopeFromOffset(offset, out unmanagedScope));

            return(new SymbolScope(unmanagedScope));
        }