如何解决SerializationException,说XElement不可序列化

时间:2013-02-20 16:02:16

标签: vb.net serialization

如何在VB,net

中解决此错误
  

system.runtime.serialization.serializationexception:Type   程序集'system.xml.linq中的'system.xml.linq.xelement',   version = 4.0.0.0,culture = neutral,publickey = b77a5c561934e089'不是   标记为可序列化

我创建了一个继承自DataGridView的Grid。 Grid的属性是:

Public Property RowsXMLRegister As List(Of XElement) 
    Get 
        Return m_AllRowsXMLRegister 
    End Get 
    Set(value As List(Of XElement)) 
        m_AllRowsXMLRegister = value 
    End Set End 
Property 

当我尝试在表格上放置网格时出现错误。

0 个答案:

没有答案