动态地将foreach语句附加到c#代码

时间:2013-08-20 05:59:55

标签: c# foreach

我正忙于一个c#项目,我有一个List {1,2,3}。我想在List对象的元素之间形成所有可能的匹配。通过使用3个foreach循环可以很容易地做到这一点。

foreach(int one in list)
{
     foreach(int two in list)
     {
           foreach(int three in list)
           {
                  // ...
            }}}

但是如果我不知道列表对象中的元素数量:如何通过使用foreach循环来完成所有匹配?所以如果列表中有6个元素,那么应该有6个基础foreach循环.. 。 (我不想使用if语句,因为它使用了太多的空间) 如果我使用foreach循环,我如何动态更改foreach循环中使用的变量的名称? (你能说:

     String "number"+i = new String("..."); //where i = number (int)

编辑:

输出应为:

 1,1,1
 1,2,1
 1,2,2
 1,2,3
 1,3,1
 1,3,2
 1,3,3
 ...

2 个答案:

答案 0 :(得分:1)

根据您的定义,我猜你需要一套电源。取自here

的示例
public static IEnumerable<IEnumerable<T>> GetPowerSet<T>(List<T> list)
{
        return from m in Enumerable.Range(0, 1 << list.Count)
               select
                   from i in Enumerable.Range(0, list.Count)
                   where (m & (1 << i)) != 0
                   select list[i];
}

private void button1_Click_2(object sender, EventArgs e)
{
        List<int> temp = new List<int>() { 1,2,3};

        List<IEnumerable<int>> ab = GetPowerSet(temp).ToList();
        Console.Write(string.Join(Environment.NewLine,
                                 ab.Select(subset =>
                                 string.Join(",", subset.Select(clr => clr.ToString()).ToArray())).ToArray()));
}

输出:

1
2
1,2
3
1,3
2,3
1,2,3

答案 1 :(得分:0)

另一种方法是获取当前项目和其余项目。然后你也可以做你的事

foreach (var one in ItemList)
{
  var currentItem = one;
  var otherItems = ItemList.Except(currentItem);

  // Now you can do all sort off things
}