我可以打 Get<int>(Stat);
或者 Get<string>(Name);
但在编译时,我得到:
不能隐式地将类型‘ int’转换为‘ T’
string
也是一样。
public T Get<T>(Stats type) where T : IConvertible
{
if (typeof(T) == typeof(int))
{
int t = Convert.ToInt16(PlayerStats[type]);
return t;
}
if (typeof(T) == typeof(string))
{
string t = PlayerStats[type].ToString();
return t;
}
}