上传者: 38524472
|
上传时间: 2022-02-17 16:51:20
|
文件大小: 170KB
|
文件类型: -
一、先准备要使用的类:
1、Person类:
class Person
{
public string Name { set; get; }
public int Age { set; get; }
public string Gender { set; get; }
public override string ToString() => Name;
}
2、准备要使用的List,用于分组(GroupBy):
List personList = new List
{
new Person