using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace ConsoleApplication4
{
class Program
{
static void Main (string[] args)
{
var test1 = Test1(1, 2);
var test2 = Test2(3, 4);
}
static IEnumerable Test1(int v1, int v2)
{
yield break;
}
static IEnumerable Test2 (int v1, int v2)
{
return new String[] { };
}
}
}
「test1」は、フィールドとしてv1およびv2(params)を持つIEnumerableのようであり、「Test1」は呼び出されません。
「Test2」は「設計された」動作をします:)
どうしたの?