fullserializer
fullserializer copied to clipboard
Member variables not serialized if class derives from List<T>
Hi,
I have a class that derives from List<T> and none of the member variables are being serialized. I switched it to implements IEnumerable<T> and the same thing happens. If I remove the interface from the class then everything gets serialized as expected.
Any idea what's going on here?
Thanks for all your great work, Nathan
Are you using the System.Serializable attribute in your class?
I'm not, no, should I be?