gpt4 book ai didi

c# - 使用泛型类型 'System.Collections.Generic.IEnumerable 需要 1 个类型参数

转载 作者:行者123 更新时间:2023-11-30 13:07:36 25 4
gpt4 key购买 nike

我的 C# 代码是:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace cs
{
public class TreeNode<T> : IEnumerable
{
}

我在这里遇到错误:

Error 1 Using the generic type 'System.Collections.Generic.IEnumerable<T>' requires 1 type arguments

最佳答案

接口(interface) IEnumerableSystem.Collections 中声明, 因此应添加以下内容:

using System.Collections;

也有类似的界面,IEnumerable<T> ,它是 IEnumerable 的通用版本,在 System.Collections.Generic 中声明。这就是为什么 Visual Studio 会出现如此神秘的错误。

关于c# - 使用泛型类型 'System.Collections.Generic.IEnumerable<T> 需要 1 个类型参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28314845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com