I have a method declared as such
public static T GetValidatedValue<T>(string param)
{
do something here and return object of type T...;
}
usually I call it like this var somnum = GetValidatedValue("14"); and expect sumNum to be number or if an invalid value was passed to be "0"
my problem now is that I need to pass a datatabel column type as "T" into this method
something like :
dr[col] = GetValidatedValue <typeof(dr[col])>(dr[col].ToString());
this will not compile
it is basicaly a combination of two(2) methods that I have found somewhere(maybe even on this site) and modified to work as i needed
public static T GetValidatedValue<T>(string param)
{
return TryParse<T>(param);
}
private static T TryParse<T>(string inValue)
{
var converter = TypeDescriptor.GetConverter(typeof(T));
try
{
return (T)converter.ConvertFromString(null, CultureInfo.InvariantCulture, inValue);
}
catch
{
return default(T);
}
}
can anyone shed some light on what I am doing wrong...
dr[col] = GetValidatedValue <typeof(dr[col])>(dr[col].ToString());– jjnguy♦ Aug 25 '11 at 19:50