如何在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
当我尝试在表格上放置网格时出现错误。