Akka.Configuration.Hocon.Tokenizer.Take C# (CSharp) Method

Take() public method

Retrieves the next character in the tokenizer.
public Take ( ) : char
return char
        public char Take()
        {
            if (EoF)
                return (char) 0;

            return _text[_index++];
        }

Same methods

Tokenizer::Take ( int length ) : string