gpt4 book ai didi

c# - .NET2 中的操作委托(delegate) - 使用泛型类型 'System.Action' 需要 '1' 类型参数

转载 作者:太空狗 更新时间:2023-10-29 22:23:57 25 4
gpt4 key购买 nike

我正在将工作代码从 .NET4 移植到 .NET2(一个 WinCE 设备)。

.NET2 中不允许使用不带参数且不返回值的 Action

下面第 5 行的编译错误:使用泛型类型“System.Action”需要“1”个类型参数

解决方法的想法?

//first state is the default for the system
public enum States { EnterVoucherCode, EnterTotalSale, ProcessVoucher };
public enum Events { PressNext, PressRedeem, ProcessSuccess, ProcessFail, PressBackToVoucherCode };

public States State { get; set; }

private Action[,] fsm; //Fails to compile here

public FiniteStateMachine()
{
//array of action delegates
fsm = new Action[3, 5] {
//PressNext, PressRedeem, ProcessSuccess, ProcessFail, PressBackToVoucherCode

最佳答案

确实,.NET 3.5 中添加了非泛型 Action

但是,Action 只是一个普通的委托(delegate)类型,因此您可以简单地自己滚动,如下所示:

public delegate void Action();

关于c# - .NET2 中的操作委托(delegate) - 使用泛型类型 'System.Action<T>' 需要 '1' 类型参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8263626/

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