最近我将我的项目从框架 2.0 转移到了框架 4.5。我有一个 xml 文件,它将被反序列化并执行一些操作。xml 反序列化在框架 2.0 中可以正常工作。但是相同的 xml 文件没有更改任何代码,它没有反序列化它的任何 xml 文件给我的错误是“根级别的数据无效。第 31 行,第 27 位。”。我为此浪费了 30 分钟。这是我的 XML 文件
<SpreadResultData>
<SpreadToList>
<Spread>
<GroupName>A</GroupName>
<CellPos>B</CellPos>
<CellValue>0~</CellValue>
<Color>Green</Color>
<CellLinePos>3</CellLinePos>
<IsSetColor>true</IsSetColor>
<IsClear>false</IsClear>
</Spread>
<Spread>
<GroupName>B</GroupName>
<CellPos>C</CellPos>
<CellValue>0~</CellValue>
<Color>Yellow</Color>
<CellLinePos>3</CellLinePos>
<IsSetColor>true</IsSetColor>
<IsClear>false</IsClear>
</Spread>
<Spread>
<GroupName>C</GroupName>
<CellPos>D</CellPos>
<CellValue>0~</CellValue>
<Color>Red</Color>
<CellLinePos>3</CellLinePos>
<IsSetColor>true</IsSetColor>
<IsClear>false</IsClear>
</Spread>
</SpreadToList>
</SpreadResultData>