gpt4 book ai didi

c# - 泛型类的空值

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

<分区>

我有这样一个类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace WindowsFormsApplication1
{
public class MyList<T> : List<T>
{
public int SelectedIndex { get; set; }

public T CurrentItem
{
get
{
if (this.SelectedIndex > this.Count)
return null;

return this[this.SelectedIndex];
}
}
}
}

我正在创建一个派生自列表的类,并创建一个用于获取当前项的属性。

如果 SelectedIndex 是一个错误的值,我将返回 null 但它有一个错误

Cannot convert null to type parameter 'T' because it could be a non-nullable value type. Consider using 'default(T)' instead.

我希望返回值是 null 而不是 default(T)

我该怎么办?

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