我有这样一个类:
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)
。
我该怎么办?
我是一名优秀的程序员,十分优秀!