YamlDotNet 如何用换行符反序列化字符串

YamlDotNet how to deserialize a string with a new line

提问人:Zenith 提问时间:2/10/2023 最后编辑:Zenith 更新时间:2/10/2023 访问量:133

问:

我正在尝试反序列化一个带有新行分隔符的字符串。这篇文章建议使用 > 或 |,但是当我在 yml 文件中添加它们时,出现以下错误:While scanning a block scalar, did not find expected comment or line break.

我的yml看起来像这样:

message: | <html><p>Some text
Some text on a new line</p></html>

YamlDotNet 中是否支持换行符,如果支持,我在哪里可以找到有关如何使用它的文档,因为我在 Github (wiki) 上找不到任何内容。

C# .net 字符串 yaml yamldotnet

评论

0赞 Roe 2/10/2023
我希望这对您的搜索 yaml.org/spec/1.2.2/#chapter-8-block-style-productions 有所帮助

答: 暂无答案