这是我的对象需要公开的数据结构(数据实际上并不存储在XML中,它只是说明布局的最简单方法):
Joe Jones Steve Smith Kate Connors Noble Washington James Thomas
当我对数据进行反序列化时,我应该如何在对象的属性方面公开它?如果它只是Department和EmployeeID,我想我会使用字典.但我也需要关联EmployeeName.
Class Department Public Id As Integer Public Employees As List(Of Employee) End Class Class Employee Public Id As Integer Public Name As String End Class
这样的事情(不记得我的VB语法).务必使用属性与公共成员...
Department类(带ID和Name),包含Employee(ID和Name)对象的集合.