मैं फोन कर सकता हूं Get<int>(Stat);
याGet<string>(Name);
लेकिन जब संकलन मुझे मिलता है:
'टी' के प्रकार को 'int' में नहीं बदल सकते
और इसी बात के लिए 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;
}
}