如何序列化dll中的对象
本文关键字:对象 dll 序列化 | 更新日期: 2023-09-27 17:53:27
所以,我有一个在运行时加载dll的项目,我使用反射和接口来创建dll。
我创建了一个被引用为dll的用户控件(在运行时),它有一个需要序列化的List。它正确地序列化了项目,但是当我试图加载它时,我不能反序列化它。
现在,我在另一个引用用户控件作为项目的项目上测试了这个usercontrol,它工作得很好。
下面是我的代码:
static public object SerializeLoad(string sFilename)
{
try
{
object _object = null;
Stream stream = File.Open(sFilename, FileMode.Open);
//BinaryFormatter bformatter = new BinaryFormatter();
XmlSerializer bformatter = new XmlSerializer(typeof(ElementTodo), "ToDo");
//_object = (_object.GetType())bformatter.Deserialize(stream);
_object = bformatter.Deserialize(stream);
stream.Close();
return _object;
}
catch
{
return null;
}
}
我尝试了二进制和xml,并且都通过"xml文档中有一个错误(2,2)"。知道为什么吗?
生成的XML如下:
<?xml version="1.0"?>
<ArrayOfElementTodo xmlns:xsi="w3.org/2001/XMLSchema-instance"; xmlns:xsd="w3.org/2001/XMLSchema"; xmlns="ToDo">
<ElementTodo Title="a" content="aa" isDone="false" />
<ElementTodo Title="b" content="bb" isDone="false" />
<ElementTodo Title="c" content="cc" isDone="false" />
<ElementTodo Title="d" content="dd" isDone="false" />
</ArrayOfElementTodo>
原因是为了能够反序列化对象,对象的类型必须是可用的,因为。net是一个静态类型环境。(程序中的每个实例都必须具有包含其成员列表的类型等)
或者,您可以使用c# 4动态反序列化任意XML(1, 2)。