1

我正在查看SquaresInternet 中已经存在的这种扩展方法。我无法进行此编译。编译器报告类似“非泛型类型 `System.Collections.IEnumerable' 不能与类型参数一起使用”

任何想法下面这段代码有什么问题?

任何帮助深表感谢。

using System.IO;
using System;
using System.Collections;

static class Program {

     static IEnumerable<int> Squares (this int from, int to) {
        for (int i=from;i<=to;i++)
        {
            yield return (int)i*i;
        }
    }

    static void Main(string[] args)
    {
        var min=1;
        foreach (int i in min.Squares(4))
        {
            Console.WriteLine(i);
        }
    }
}
4

1 回答 1

13

替换using System.Collections;using System.Collections.Generic;

于 2013-10-16T08:20:29.773 回答