0

我正在尝试测试我的 MapMany 实现,但在获取输出时遇到问题。

代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication3
{   
    static class E
    {
         static void Main()
        {

            var sequence = new int[] { 0, 1, 2, 3, 4 };
            var result = sequence.MapMany(
            s => s % 2 == 1 ? new int[] { s } : new int[] { });
            Console.WriteLine("{0}", result);
         }


        public static IEnumerable<U> MapMany<T,U> 
        (this IEnumerable<T> sequence, Func<T,IEnumerable<U>> func) {

            foreach (T item in sequence) {
               IEnumerable<U> sequence2 = func(item);

                    foreach (U item2 in sequence2) {
                         yield return item2;
                    }
                }


        }



    }
     }

当我尝试运行代码时,它会给我以下输出:

ConsoleApplication3.E+<MapMany>d__2'2[System.Int32,System.Int32]

有人知道怎么修这个东西吗?

干杯

4

2 回答 2

1

例如,

result.ToList().ForEach(res=>Console.WriteLine("{0}", res));
于 2012-09-25T11:19:24.890 回答
0

更改 Console.WriteLine。输出是正确的。

编辑: result.ToList().ForEach(x => Console.Write(x + " "));

于 2012-09-25T11:17:32.803 回答