Beispiel #1
0
    public ScintillaNet.Marker m_markerArrow;               // Current execution point marker

    // Constructor
    public App()
    {
      m_network = new Network();
      m_debuggerSession = new DebuggerSession(m_network);
      m_debuggerRecInterface = new OurDebuggerRecInterface(this);
      m_state = new DebuggerState();

      m_timeLastPollMachineStateMS = 0;
    }
Beispiel #2
0
    protected System.Text.UTF8Encoding m_textEncoding;      // helper for string to byte array conversion

    // Constructor
    public DebuggerSession(Network a_network)
    {
      m_network = a_network;

      m_textEncoding = new System.Text.UTF8Encoding();

      m_outStream = new MemoryStream();
      m_inStreamCur = null;
    }