VSNDK.DebugEngine.AD7Expression.AD7Expression C# (CSharp) Method

AD7Expression() public method

Constructor.
public AD7Expression ( string exp, AD7StackFrame frame, EventDispatcher dispatcher ) : System
exp string The expression to be evaluated.
frame AD7StackFrame Current stack frame.
dispatcher EventDispatcher Represents the class that manages debug events for the debug engine.
return System
        public AD7Expression(string exp, AD7StackFrame frame, EventDispatcher dispatcher)
        {
            this.exp = exp;
            this.m_eventDispatcher = dispatcher;
            this.m_frame = frame;
        }