Linqを使って次の人々のリストを並べ替えるにはどうすればいいですか?IDによってグループ化され、私が欲しいLinqを使用してリストの順序を維持しながら注文する方法とgroupby
List<person>people = new List<person>();
people.Add(new Person(1, "joe"));
people.Add(new Person(1, "john"));
people.Add(new Person(2, "bob"));
people.Add(new Person(3, "tracy"));
people.Add(new Person(2, "harry"));
people.Add(new Person(1, "ellen"));
people.Add(new Person(3, "mary"));
結果:
Person(1, "joe")
Person(1, "john")
Person(1, "ellen")
Person(2, "bob")
Person(2, "harry")
Person(3, "tracy")
Person(3, "mary")