Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@55 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
9 changed files with 128 additions and 35 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
// <file>
|
||||
// <owner name="David Srbecký" email="dsrbecky@post.cz"/>
|
||||
// </file>
|
||||
|
||||
using System; |
||||
using DebuggerInterop.Core; |
||||
|
||||
namespace DebuggerLibrary |
||||
{ |
||||
delegate void CorDebugEvalEventHandler (object sender, CorDebugEvalEventArgs e); |
||||
|
||||
class CorDebugEvalEventArgs : System.EventArgs |
||||
{ |
||||
ICorDebugEval corDebugEval; |
||||
|
||||
public ICorDebugEval CorDebugEval { |
||||
get { |
||||
return corDebugEval; |
||||
} |
||||
} |
||||
|
||||
public CorDebugEvalEventArgs(ICorDebugEval corDebugEval) |
||||
{ |
||||
this.corDebugEval = corDebugEval; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue