我有一个“人”对象列表:
public class Person
{
public Int32 Id { get; set; }
public String Name { get; set; }
public Document oDocument { get; set; }
}
还有 Document 类。
public class Document
{
public String Type { get; set; }
public String Code { get; set; }
}
我需要使用仅显示两列的列表填充 DataGridView:Name(Person) 和 DocumentCode (Document)
我使用了这段代码,但我没有得到我想要的。
dgvPersona.DataSource = list;