我可以打电话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;
}
}