Mapsui.Geometries.WellKnownText.WktStreamTokenizer.ReadDoubleQuotedWord C# (CSharp) Method

ReadDoubleQuotedWord() public method

Reads a string inside double quotes.
White space inside quotes is preserved.
public ReadDoubleQuotedWord ( ) : string
return string
        public string ReadDoubleQuotedWord()
        {
            var word = "";
            ReadToken("\"");
            NextToken(false);
            while (GetStringValue() != "\"")
            {
                word = word + GetStringValue();
                NextToken(false);
            }
            return word;
        }