假设我们有一个像这样的类:
class SystemMember : IEquatable<SystemMember>
{
public int Id;
public string Equation;
public bool Equals(SystemMember other)
{
return other != null && (Id.Equals(other.Id));
}
}
在List<SystemMember> elements
我们已经完成的
elements = elements.Distinct().OrderBy(e => e.Id).ToList();
IDs
可以1, 2, 4, 6, 9
和它的确定。
我们想要填充一个字符串结构,就像我们在该列表中{first (lovest N)}, {next N}, ... , {last N}
的所有内容一样。IDs
如何用 LINQ 做这样的事情?