Is it possible to serialize a method containing yield statements (or a class that contains such a method) such that when you rehydrate the class, the internal state of the generated iterator is retained?
| |||||||||||
feedback
|
|
Yes, you can do this. With caveats. An example of serializing a method with a In general, trying to serialize without doing some extra work will fail. This is bcause the compiler generated classes are not marked with the I would note the reason that they aren't marked with serializable is because they are an implementation detail and subject to breaking changes in future versions, so you may not be able to deserialize it in a newer version. Related to a question I asked on how to serialize anonymous delegates, which should work for this case as well. | |||
|
feedback
|
|
Internally, So, answer is no, it is not possible. But, you can implement desired enumerator by itself, but it requires more labor than | |||||
feedback
|
|
Just make sure that just before you call yield, that you save state (i.e., the iterators position) in a serializable field (the location field, or whatever you call it). Then, when the class is deserialized, simply continue where you left off, using the location field. But, when will this be useful? Do you plan to serialize objects in the middle of a foreach loop? Maybe you make it a lot easier if you give you class a Note: methods cannot be serialized. You serialize data, i.e., properties and fields. | ||||
|
feedback
|
|
Yes. Any method that returns an IEnumerable can have it's own code for | |||
|
feedback
|