I am writing a project for Windows mobile 6 (.NET CF 3.5). My project contains a class that looks like this:
class MyClass {
private Bitmap picture;
//... and some other fields ...
public MyClass ()
{
picture = new Bitmap (/*Picture file path*/);
//...
}
}
To my surprise, I found out that there is no binary formatter in the .NET CF. Does anyone know how can I serialize such object?? I tried to use CompactFormatterPlus - but it didnt worked.