Exemplo n.º 1
0
        /// <summary>
        /// Utility function, things common to constructors.
        /// </summary>
        private void Initialize()
        {
            backString  = new CharBuffer(32);
            nextTokenSb = new CharBuffer(1024);

            InitializeStream();
            settings = new StreamTokenizerSettings();
            settings.SetDefaults();

            expSb = new CharBuffer();
            tmpSb = new CharBuffer();
        }