gpt4 book ai didi

c# - 使用 XDocument 加载字符串时路径中出现非法字符

转载 作者:IT王子 更新时间:2023-10-29 04:00:25 24 4
gpt4 key购买 nike

我在尝试通过 XDocument 加载的字符串中有非常简单的 XML,以便我可以使用 LINQ to XML:

 var xmlString = @"<?xml version=""1.0"" encoding=""utf-8"" standalone=""yes""?>
<person>Test Person</person>";

var doc = XDocument.Load(xmlString); //'Illegal characters in path' error thrown here

我在尝试加载 XML 时收到 Illegal characters in path. 错误;有人可以解释为什么会这样吗?谢谢。

最佳答案

您正在寻找 XDocument.Parse - XDocument.Load 适用于文件 而不是 xml 字符串:

var doc = XDocument.Parse(xmlString); 

关于c# - 使用 XDocument 加载字符串时路径中出现非法字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10586838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com