1

我定义了一个类,并将该类的记录写入列表。在我编写错误报告之前无法对列表进行排序。我试图在写入错误报告之前按“finderror”类型的字母顺序对列表进行排序,以便在错误报告中对列表进行排序和更有条理。这是课程:

public class types
{
    public types() { }
    public string person { get; set; }
    public string state { get; set; }
    public string phone# { get; set; }
    public string finderror { get; set; }

}

如果我写这个,我会收到以下错误:

    List1 = List1.Sort();
    List1 is a global list I declared before my main.

    Error-Cannot implicitly convert type 'void' to 'System.Collections.Generic.List<types>'

我如何按字母顺序对列表中的“finderror”列进行排序。

4

2 回答 2

5

首先它只是

List1.Sort();

排序方法不返回任何内容。它只是对列表进行排序。

其次,如果您想根据属性进行排序,请执行此操作

List<Types> sortedlist = List1.OrderBy(x => x.finderror).ToList();
于 2013-05-08T00:36:05.043 回答
3

我想你想要List1 = List1.OrderBy( x => x.finderror ).ToList();

于 2013-05-08T00:39:43.787 回答