本文介绍了无法将元素[MyClass]转换为XML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个代码将一个对象转换为xmldocument但是在这样做时我得到了这个错误



代码是返回xmldocument如下:



I have this code which converts an object to xmldocument but while doing that i get this error

The code is which returns the xmldocument is below :

public static XmlDocument ToXmlDocument(this MyClass myclass)
        {
            var result = new XmlDocument();
            var xml = myclass.ToXml(true, Formatting.Indented, EOLType.CRLF, Helpers.XmlSerializationContext());
            result.LoadXml(xml);
            return result;
        }





当我将对象转换为xml时,我认为有些东西是可疑的



有人可以建议那里有什么问题



最好,

Hg



I think something is fishy there when i am converting object to xml

can someone please suggest what is wrong in there

Best,
Hg

推荐答案


这篇关于无法将元素[MyClass]转换为XML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 13:48