예제 #1
0
        public override void Execute(LocalsCtxMenuContext context)
        {
            var addrRange = GetValue(context);

            if (addrRange != null)
            {
                memoryWindowService.Show(addrRange.Value.Address, addrRange.Value.Size, windowIndex);
            }
        }
예제 #2
0
        public override void Execute(LocalsCtxMenuContext context)
        {
            var addrRange = ShowInMemoryWindowLocalsCtxMenuCommand.GetValue(context);

            if (addrRange != null)
            {
                memoryWindowService.Show(addrRange.Value);
            }
        }