我正在尝试测试我的 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]
有人知道怎么修这个东西吗?
干杯