Akka.Configuration.Hocon.Parser.ParseArray C# (CSharp) Метод

ParseArray() публичный Метод

Retrieves the next array token from the tokenizer.
public ParseArray ( string currentPath ) : HoconArray
currentPath string The location in the HOCON object hierarchy that the parser is currently reading.
Результат HoconArray
        public HoconArray ParseArray(string currentPath)
        {
            var arr = new HoconArray();
            while (!_reader.EoF && !_reader.IsArrayEnd())
            {
                var v = new HoconValue();
                ParseValue(v,currentPath);
                arr.Add(v);
                _reader.PullWhitespaceAndComments();
            }
            _reader.PullArrayEnd();
            return arr;
        }