是否有对对象中的每个属性进行二进制序列化的快捷方式?
如果有一个对象,其中每个公共属性都必须序列化并且属性很简单(只是数字或字符串或已经实现ISerialized
的对象),有没有一种简单的方法可以做到它无需创建 GetObjectData(SerializationInfo info, StreamingContext context) 和每次都将 SerializationInfo 作为参数的构造函数?
我知道这可以通过反射手动完成,但是 .NET Framework 中有一个神奇的方法可以做到这一点吗?
所以正确答案是:
不要尝试实现 ISerialized - 它用于自定义序列化。相反,在类声明之前添加 [Serializable] 属性。
If there is an object in which every public property must be serialized and properties are simple (just numbers or strings or objects already implementing ISerializable
), is there an easy way to do it without having to create GetObjectData(SerializationInfo info, StreamingContext context)
and a constructor taking SerializationInfo
as argument every time?
I know that it can be done manually with reflection, but is there a magic method inside the .NET Framework to do it?
So the correct answer is:
Don't try to implement ISerializable - it is for custom serialization. Instead add the [Serializable] attribute right before your class declaration.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 BinaryFormatter 类 - 应该执行您需要的
操作 编辑:您不是从 BinaryFormatter 派生的 - 它是一个用于执行序列化的实用程序类。这是从文档复制的示例
Try the BinaryFormatter class - should do what you need
EDIT: You do not derive from BinaryFormatter - it is a utility class you use to do your serialization. Here is an example copied from the docs