예제 #1
0
        public Atomic_Symbol(Double_Quote _double_quote)
        {
            double_quote = _double_quote;
            Add(double_quote);

            UpdateProperties("atomic-symbol");
        }
예제 #2
0
        private Double_Quote Parse_Double_Quote()
        {
            if (_scanResult.IsEOL)
            {
                return(null);
            }                                       // must be first line on any atom

            var _data   = _scanResult.CurrentToken;
            var _result = new Double_Quote(_data);

            if (_result.IsValidated)
            {
                _scanResult.CurrentReadIndex++;
                return(_result);
            }
            else
            {
                return(null);
            }
        }