这似乎很简单,但我很难摆脱这方面的心理障碍。
我有一个名称列表,这些项目是根据一些业务规则专门订购的。这是在某些给定情况下被认为是正确的顺序。
所以
string [] original = {"Bob","Jim","Kat","Nat","Kim","Ant"};
我有一个 Person 类型,其中包含一个字段 Name,它将具有上述值之一。
所以,
class Person {
...
public string Name; //Name will be one of the above values.
...
}
我有一堆这样的人对象,在一个集合中。
PersonCollection p = new PersonCollection
{ new Person{ .. Name = "Kat"..},
new Person {.. "Kim" ..} ...
} etc.;
我知道所有这些对象的名称都只包含上面列表中的值,甚至不会重复。我需要按照主列表中提供的名称的顺序(即上面的“原始”数组)来安排这个人的集合。
到目前为止直截了当,但这是棘手的一点。
由于 Person 类的定义方式,我无法进入并更改它,不幸的是,我们在 person 对象中只有以下可用方法:
移动项目。
MoveToFirst(PersonCollection collection) // Move to the first of the given collection
MoveToLast(PersonCollection collection) // Move to the last of the given collection
MoveAfter(PersonCollection collection, Person previousPerson) //places the object after another person item, which is present in the list.
任何人?顺便说一句,您可能会说,这是一个问题的“假设”表示,很遗憾,我不能在这里发布或讨论实际的生产代码。我希望其他人以前遇到过类似的事情。