gpt4 book ai didi

c# - 如何在 C# 中扩展返回泛型值的泛型类?

转载 作者:太空宇宙 更新时间:2023-11-03 13:33:48 25 4
gpt4 key购买 nike

我在使用简单的 Clone 方法扩展通用 Stack 类时遇到了问题。这是我的方法:

class Program
{
static void Main(string[] args)
{
Stack<string> myStack = new Stack<string>();
myStack.Push("hello!");

var stackClone = myStack.Clone();

}
}

public static class StackMixin<T>
{
public static Stack<T> Clone<T>(this Stack<T> stackToClone)
{
if (stackToClone == null)
throw new ArgumentNullException();

IEnumerable<T> reversedStackToClone = stackToClone.Reverse<T>();
Stack<T> cloneStack = new Stack<T>(reversedStackToClone);
return cloneStack;
}
}

我收到以下错误:

System.Collections.Generic.Stack<string> does not contain a definition for 'Clone' and no extension method 'Clone' accepting a first argument of type System.Collections.Generic.Stack<string> could be found (are you missing a using directive or an assembly reference?)

我一直在谷歌上搜索解决方案或解释,但没有成功。 (这就是我所拥有的:试过 https://www.google.pl/#q=generic+extension+method+c%23 )

最佳答案

根据评论:更改 public static class StackMixin<T>public static class StackMixin

关于c# - 如何在 C# 中扩展返回泛型值的泛型类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19414541/

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