如何防止System.Windows.Forms.Form停止序列化

时间:2016-10-24 09:10:18

标签: c# serialization

我有课程

using System.Windows.Forms

public class Tata : Form
{
    int titi;
}

[Serializable]
public partial class Toto : Tata
{
    int toto;
}

但每当我尝试构建我的项目时,都会抛出异常,因为显然Form不支持​​序列化。

有没有办法避免Form序列化,从而避免错误?

0 个答案:

没有答案