是否有对对象中的每个属性进行二进制序列化的快捷方式?

发布于 2024-09-13 06:28:49 字数 409 浏览 3 评论 0原文

如果有一个对象,其中每个公共属性都必须序列化并且属性很简单(只是数字或字符串或已经实现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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

此生挚爱伱 2024-09-20 06:28:49

尝试 BinaryFormatter 类 - 应该执行您需要的

操作 编辑:您不是从 BinaryFormatter 派生的 - 它是一个用于执行序列化的实用程序类。这是从文档复制的示例

MyObject obj = new MyObject();
obj.n1 = 1;
obj.n2 = 24;
obj.str = "Some String";
IFormatter formatter = new BinaryFormatter();
Stream stream = new FileStream("MyFile.bin", FileMode.Create, FileAccess.Write, FileShare.None);
formatter.Serialize(stream, obj);
stream.Close();

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

MyObject obj = new MyObject();
obj.n1 = 1;
obj.n2 = 24;
obj.str = "Some String";
IFormatter formatter = new BinaryFormatter();
Stream stream = new FileStream("MyFile.bin", FileMode.Create, FileAccess.Write, FileShare.None);
formatter.Serialize(stream, obj);
stream.Close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文