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...

link|improve this question
So the method is supposed to parse a String into a number of various types? – jjnguy Aug 25 '11 at 19:18
yes, but it actually work with any types. 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); } } – Vlad Aug 25 '11 at 19:26
could you please edit that into your question? – jjnguy Aug 25 '11 at 19:34
sure, here you go :-) – Vlad Aug 25 '11 at 19:43
1  
Now I'm confused why yo are converting the value to a string, and then converting back to that value - dr[col] = GetValidatedValue <typeof(dr[col])>(dr[col].ToString()); – jjnguy Aug 25 '11 at 19:50
show 3 more comments
feedback

2 Answers

How about the KISS method:

static readonly Dictionary<Type, object> defaultMap = new Dictionary<Type, object>()
        {
            { typeof(DateTime), DateTime.MinValue },
            { typeof(Int32), 0},
            { typeof(String), ""}
            /* etc etc etc*/
        };

private static void SetDefault(Type type, ref object value)
{
    if(value == DBNull.Value || value == null)
        value = defaultMap[type];
}

Then you just call it:

SetDefault(col.DataType, ref dr[col]);
link|improve this answer
I LOVE KISS Method :-D thanks... – Vlad Aug 25 '11 at 20:25
feedback

Generics are really only useful when you know what the type will be at compile time, in which case you can call your method like this:

GetValidatedValue<int>(dr[col].ToString());

However, it looks to me like you don't actually know the type at compile time, so generics would only get in the way. Try implementing a non-generic version of your method, like this:

public static object GetValidatedValue(string param, Type type)
{
    return TryParse(param, type);
}

private static object TryParse(string inValue, Type type)
{
    var converter = TypeDescriptor.GetConverter(type);

    try
    {
        return converter.ConvertFromString(null, CultureInfo.InvariantCulture, inValue);
    }
    catch
    {
        return default(T);
    }
}

That way you can call it like this:

GetValidatedValue<int>(dr[col].ToString(), dr[col].GetType());

(Although I must admit it seems like unnecessary overhead to turn something into a string and then convert it back to its original type again.)

Update

Now that I better understand what you're trying to do, the above method won't work because dr[col] will not have any type if it is null, and it will have the DbNull type if it is DbNull. Unless you have some other way to determine what type of data should be stored in that column, it's just not going to work. Of course, if you can figure out what data type should be there, getting the default value will be totally easy:

public static object GetValidatedValue(string param, Type type)
{
    return param == null || param == DBNull.Value ? Activator.CreateInstance(type); 
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.