コード例 #1
0
ファイル: DebuggerCommands.cs プロジェクト: jorik041/dnSpy
 public bool IsVisible(TextViewContext context)
 {
     return((context == null || context.TextView != null) &&
            DebuggerPlugin.DebugShowNextStatementCanExecute());
 }
コード例 #2
0
ファイル: DebuggerCommands.cs プロジェクト: softearth/dnSpy
 public bool IsVisible(ContextMenuEntryContext context)
 {
     return((context == null || context.Element is DecompilerTextView) &&
            DebuggerPlugin.DebugShowNextStatementCanExecute());
 }