标签: c# serialization
我有课程
using System.Windows.Forms public class Tata : Form { int titi; } [Serializable] public partial class Toto : Tata { int toto; }
但每当我尝试构建我的项目时,都会抛出异常,因为显然Form不支持序列化。
有没有办法避免Form序列化,从而避免错误?