gpt4 book ai didi

c# - '/' 字符十六进制值 0x2F 的 XmlException 不能包含在名称中

转载 作者:太空宇宙 更新时间:2023-11-03 18:48:35 30 4
gpt4 key购买 nike

如何解决生成的异常?

        public static string[] getKeywords(string filename)  
{
var xmlFile = new XElement(filename);
string[] keywords = xmlFile.Elements("Keyword")
.Attributes("name")
.Select(n => n.Value).ToArray();
return keywords;
}

这会产生这个异常:

System.Xml.XmlException was unhandled Message=The '/' character, hexadecimal value 0x2F, cannot be included in a name. Source=System.Xml

最佳答案

new XElement(filename) 表示创建一个名称来自 filename 的元素 - 你是说 XElement.Load(filename) 吗?

关于c# - '/' 字符十六进制值 0x2F 的 XmlException 不能包含在名称中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2052707/

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