You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a piece of YAML that contains the string literal "null". Other YAML parsers (e.g. YamlDotNet) treat this as a string "null", but SharpYaml interprets it as just null.
I have a piece of YAML that contains the string literal
"null"
. Other YAML parsers (e.g. YamlDotNet) treat this as a string"null"
, but SharpYaml interprets it as justnull
.Example:
Expected deserialization result:
myEnum.Values[0].Name == "null"
Actual deserialization result:
myEnum.Values[0].Name == null
The text was updated successfully, but these errors were encountered: