예제 #1
0
파일: Commands.cs 프로젝트: xornand/dnSpy
        protected override void Execute(LocalsCtxMenuContext context)
        {
            var addrRange = GetValue(context);

            if (addrRange != null)
            {
                MemoryUtils.ShowInMemoryWindow(windowNumber, addrRange.Value.Address, addrRange.Value.Size);
            }
        }
예제 #2
0
        protected override void Execute(ModulesCtxMenuContext context)
        {
            var vm = GetModule(context);

            if (vm != null)
            {
                MemoryUtils.ShowInMemoryWindow(windowNumber, vm.Module.Address, vm.Module.Size);
            }
        }