xsd2Code 反序列化不起作用
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为我不确定你如何尝试调用该方法。由于 deserialize 方法是静态方法,您可能必须像这样调用:
还要确保生成代码时选择的名称空间相同或作为 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:
also make sure the NameSpace selected while you generated the code is the same or either imported as using statements.