I can call Get<int>(Stat); or Get<string>(Name);
But when compiling I get:
Cannot implicitly convert type ‘int’ to ‘T’
and the same thing for 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;
}
}
Any time you find yourself switching on a type in a generic you are almost certainly doing something wrong. Generics should be generic; they should operate identically completely independent of the type.
If T can only be int or string then don’t write your code this way at all in the first place. Write two methods, one that returns an int and one that returns a string.