I have a class which has a delegate member. I can set the delegate for each instantiated object of that class but has not found any way to save that object yet
|
|
This is a pretty risky thing to do. While it's true that you can serialize and deserialize a delegate just like any other object, the delegate is a pointer to a method inside the program that serialized it. If you deserialize the object in another program, you'll get a For instance, let's modify darin's program a bit:
Run it, and you'll see that it creates the object, serializes it, deserializes it into a new object, and when you call Now swap the declaration of a and b and run the program. Yikes. Now the deserialized object is returning "b". This is happening because what's actually being serialized is the name that the compiler is assigning to the lambda expression. And the compiler assigns names to lambda expressions in the order it finds them. And that's what's risky about this: you're not serializing the delegate, you're serializing a symbol. It's the value of the symbol, and not what the symbol represents, that gets serialized. The behavior of the deserialized object depends on what the value of that symbol represents in the program that's deserializing it. To a certain extent, this is true with all serialization. Deserialize an object into a program that implements the object's class differently than the serializing program did, and the fun begins. But serializing delegates couples the serialized object to the symbol table of the program that serialized it, not to the implementation of the object's class. If it were me, I'd consider making this coupling explicit. I'd create a static property of |
||
|
|
|
A delegate is a method pointer, I might misunderstand when you say save, but the location added to the delegate at runtime might not exist any longer if you try and save and restore the address. |
||||||
|
|
|
Actually you can with BinaryFormatter as it preserves type information. And here's the proof:
An important thing you should be aware of if you decide to use BinaryFormatter is that its format is not well documented and the implementation could have breaking changes between .NET and/or CLR versions. |
||||
|
