无法使用c#xmlserializer反序列化以前序列化的XML

时间:2013-05-02 14:36:22

标签: c# xml xmlserializer xsd.exe

我必须使用外部给定的xml结构(巨大的)。 我使用visual studio的xsd工具生成应该使用xmlserializer(de)序列化的类。 由于我们从VS2010切换到VS2012(但仍然针对.NET 4.0),我在解析XML时遇到了问题。我把它分解为以下代码:

using System.IO;
using System.Xml;
using System.Xml.Serialization;

using Microsoft.VisualStudio.TestTools.UnitTesting;


/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.1")]
[System.SerializableAttribute]
[System.Diagnostics.DebuggerStepThroughAttribute]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[XmlRootAttribute("DecoderParameter", Namespace = "", IsNullable = false)]
public class DecoderParameterType
{
    private string[] decoderUpdatePointsField;

    /// <remarks/>
    [XmlAttributeAttribute(DataType = "integer")]
    public string[] DecoderUpdatePoints
    {
        get
        {
            return this.decoderUpdatePointsField;
        }
        set
        {
            this.decoderUpdatePointsField = value;
        }
    }
}

[TestClass]
public class UnitTest1
{
    #region Public Methods and Operators

    [TestMethod]
    public void TestMethod1()
    {
        var fileName = "c:\\temp\\test.xml";

        var deserializer = new XmlSerializer(typeof(DecoderParameterType));

        var output = new DecoderParameterType { DecoderUpdatePoints = new[] { "5", "7", "9" } };

        using (var fs = new FileStream(fileName, FileMode.Create))
        {
            deserializer.Serialize(fs, output);
        }

        using (var sr = new XmlTextReader(fileName))
        {
            var myParameter = (DecoderParameterType)deserializer.Deserialize(sr);
        }
    }

    #endregion
}

此代码段失败并显示异常:

  

System.Xml.XmlException:'None'是无效的XmlNodeType。

如果我从XmlAttributeAttribute中删除“DataType = integer”,它就可以工作。

现在我有以下问题:

  • 为什么安装.NET4.5会改变.NET4.0程序的行为?或者情况并非如此,我错过了什么? (在我安装VS2012之前,这个工作正常!现在它既不在VS2010也不在VS2012工作)
  • 删除数据类型声明有哪些副作用?
  • 哪些其他数据类型声明也会受到影响?我在生成的代码中有很多这些声明,不仅是整数(nonNegativeInteger,date等等)。

更新:仅当变量是数组时才会出现问题。

亲切的问候

1 个答案:

答案 0 :(得分:0)

嗯,第一颗子弹很容易:

  
      
  • 为什么安装.NET4.5会改变.NET4.0程序的行为?
  •   

因为.NET 4.5是一种过度安装,而不是并行安装。安装.NET 4.5时,您正在更改4.0程序集。定位4.0与4.5的行为只是确定IDE是否允许您引用4.5 特定功能。即使在定位4.0时,一旦安装了4.5,您就会使用4.5实现以及与4.5相关的任何代码更改(错误修复,更改的行为和新错误)。