xsd2Code 反序列化不起作用

发布于 2024-11-29 17:32:32 字数 241 浏览 3 评论 0原文

我使用 XSD2Code 来序列化和反序列化 XML 文档。

由于某种原因,我没有在我的智能感知中获得 Deserialize 方法。当我查看 XSD2Code 生成的代码时,我可以看到这些方法:

public static SOMEOBJect Deserialize(string xml)
{
 ..........
}

有人能告诉我如何调用此方法吗?

I'm using XSD2Code in order to serialize and deserialize an XML document.

For some reason I'm not getting Deserialize method in my intellisense. When I look at the code generated by XSD2Code, I can see these methods:

public static SOMEOBJect Deserialize(string xml)
{
 ..........
}

Could someone please tell me how to call this method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉鱼一梦 2024-12-06 17:32:32

因为我不确定你如何尝试调用该方法。由于 deserialize 方法是静态方法,您可能必须像这样调用:

SOMEOBJect x = SOMEOBJect.Deserialize(xml);

还要确保生成代码时选择的名称空间相同或作为 using 语句导入。

Since I am not sure how are you trying to call the method. As the deserialize method is a static method, you might have to call like this:

SOMEOBJect x = SOMEOBJect.Deserialize(xml);

also make sure the NameSpace selected while you generated the code is the same or either imported as using statements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文