提问
多个泛型如何设置约束
回答
public abstract class HandleBase<Req,Ack> where Req:RequestInfoBase where Ack : AckInfoBase
补充
泛型优点
避免类型转换,可以减少大量继承关系中的as 操作
多个泛型如何设置约束
public abstract class HandleBase<Req,Ack> where Req:RequestInfoBase where Ack : AckInfoBase
泛型优点
避免类型转换,可以减少大量继承关系中的as 操作