如何静态列表?

时间:2016-06-13 07:57:40

标签: console

我在C#控制台应用程序中有这个静态列表,其中包含不同的

2 个答案:

答案 0 :(得分:0)

有各种各样的方式。

...前

int maxCount= 4;
for(int i=0;i<maxCount && i< Mp3spelers.Count();i++)
{
    Console.WriteLine(list[i]); // Write whatever your need.
}

或者,使用Linq

list.Take(maxCount)
     .ToList()
     .ForEach(x=> Console.WriteLine(x));

答案 1 :(得分:0)

如果您在ToString()课程中覆盖了MP3,则可以使用以下代码:

public static void Display() {
   Mp3spelers
       .Where(x => /* TODO e.g. x.Name.Contains("X")*/)
       .ForEach(entry => Console.WriteLine(entry));
}