1
int x = 9; 
List<string> list = new List<string> {"a", "b"};

我希望列表是:ababa ...直到list.Count = x。我怎样才能做到这一点?

4

4 回答 4

4

您可以使用 LINQ 轻松完成:

List<string> result = (from ignored in Enumerable.Range(0, int.MaxValue)
                       from item in list
                       select item).Take(count).ToList();

或者不使用查询表达式:

List<string> result = Enumerable.Range(0, int.MaxValue)
                                .SelectMany(ignored => list)
                                .Take(count)
                                .ToList();

这里的使用Enumerable.Range只是为了强制重复——就像阿尼的使用方法一样Enumerable.Repeat,当然也可以。

于 2012-06-06T06:50:24.730 回答
3

怎么样:

var result= Enumerable.Repeat(new[] { "a", "b" }, int.MaxValue)
                      .SelectMany(strArray => strArray)
                      .Take(x)
                      .ToList();
于 2012-06-06T06:51:24.383 回答
0

像这样的东西应该工作。我没有检查它,让它成为你的练习:)

int currentCount = list.Count;

for (int i=0; i<x; ++i)
{
     list.Add(list[i%currentCount]);  
}
于 2012-06-06T06:50:46.253 回答
0
int x = 9;
List<string> list = new List<string> {};

for (int i = 0; i < x; i++)
{
    list.Add("a");
    list.Add("b");    
}

// verify    
foreach (var item in list)
{
    Console.WriteLine(item);    
}
于 2012-06-06T06:51:43.603 回答