Day: June 26, 2019

  • C# Parser

    namespace CSharpParser { class Parser { private string m_strData; private int m_nMaxLength; private List<string> m_lData; /*! \brief Constructor of the parser class. */ public Parser() { ClearData(); m_lData = new List<string>(); m_nMaxLength = 256; } public void ClearData() { m_strData = “”; } /*! \brief Add data to the \ref m_strData variable and make sure…