We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
YAML also has this feature, the quote on string value is not mandatory.
YAML
x="a" y=b
should be cast to
X = a Y = b
not
X = "a" Y = b
The text was updated successfully, but these errors were encountered:
YAML also has this feature, the quote on string value is not mandatory. x="a" y=b should be cast to X = a Y = b not X = "a" Y = b
Have you tried using new ConfigParser(new ConfigParserSettings { MultiLineValues = MultiLineValues.QuoteDelimitedValues })?
new ConfigParser(new ConfigParserSettings { MultiLineValues = MultiLineValues.QuoteDelimitedValues })
Sorry, something went wrong.
thanks, i will try it
salaros
No branches or pull requests
YAML
also has this feature, the quote on string value is not mandatory.should be cast to
not
The text was updated successfully, but these errors were encountered: