我正在为Windows Mobile 6(.NET CF 3.5)编写一个项目。我的项目包含一个如下所示的类:
class MyClass {
private Bitmap picture;
//... and some other fields ...
public MyClass ()
{
picture = new Bitmap (/*Picture file path*/);
//...
}
}
令我惊讶的是,我发现.NET CF中没有二进制格式化程序。有谁知道我怎么能序列化这样的对象? 我尝试使用CompactFormatterPlus - 但它没有用。
答案 0 :(得分:1)
有两种方法可以攻击它。