我正在尝试序列化一个包含一个字段(类型对象)的类(Config),该字段包含一个数据项类(MyDataItem)。该类MyDataItem
包含一个字段(类型对象)来保存数据项的值(值)。该值是 object 类型的原因是 aMyDataItem
可能保存不同类型的值。当此值设置为数组(ex int [])而不是基本类型(int、string 等)时,出现System.Invalid operation exception
错误:
There was an error generating the XML document.
The type System.Int32[] may not be used in this context.
有谁知道我该如何解决这个问题?
我正在使用 Windows XP、Visual Studio 2008 和 .net 3.5
显示错误的示例程序: