Reflection.Serialize

I’ve tried to do serialization of object using reflection.Serialize(object o,Type t) on FEZ PANDA II but I receive a “System.NotImplementedException”.
Does this mean that the serialization is not allowed??
Thanks

Serialization is too much for smallest devices. IT is supported in larger ones though, like Cobra (EMX) and ChipworkX.

Note that serialization is not a preferable option in many cases on embedded systems due to overhead. There are ways to handle serialization-like better. For example, use the insert in array methods on Utilities class GHI Electronics – Where Hardware Meets Software

FYI: I believe that MF serialization is not compatible with the full .NET serialization formats. So if you want to transfer objects to a PC, then MF serialization would not have worked for you anyway.

Yes Mike is correct