gpt4 book ai didi

c# - 用 实现类

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

我想这样实现:

namespace PIMP.Web.TestForum.Models
{
public class ThreadModel : PagedList<T>
{

但我收到错误消息:

The type or namespace name 'T' could not be found (are you missing a using directive or an assembly reference?)

我应该怎么做才能避免呢?

最佳答案

namespace PIMP.Web.TestForum.Models
{
public class ThreadModel<T> : PagedList<T>
{

或将 T 更改为实际类型。

关于c# - 用 <T> 实现类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3583433/

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