vote up 3 vote down star

I have a few procedures, for simplicity sake, look like the following:

public string FetchValueAsString(string key)
public int FetchValueAsInteger(string key)
public bool FetchValueAsBoolean(string key)
public DateTime FetchValueAsDateTime(string key)

I know I could just have one method that returns and object type and just do a conversion, but I'm wondering if there is a way I can just have one method called, and somehow use generics to determine the return value ... possible?

flag

4 Answers

vote up 8 vote down check
public static T FetchValue<T>(string key)
{
    string value;  
    // logic to set value here  
    // ...  
    return (T)Convert.ChangeType(value, typeof(T), CultureInfo.InvariantCulture);  
}
link|flag
This worked perfectly ... thanks! – mattruma Dec 25 '08 at 17:56
vote up 2 vote down

I'm assuming you're writing code in C#. If you are then you could do what your talking about like this:

public T FetchValueAsType<T>(string key)

You would then call the version like this:

FetchValueAsType<int>(key);

That being said the the System.Convert class provided by the framework works just as well and has similar syntax. You can find the msdn article about it here: http://msdn.microsoft.com/en-us/library/system.convert.aspx

link|flag
vote up 1 vote down

It's possible, but without knowing the method's implementation, it's hard to say whether there is something to be gained, or if it's truly/easily implementable as a generic.

At any rate:

public T FetchValue<T>(string key)

would be what you're looking to do.

link|flag
vote up -4 vote down

I'd recommend overriding for this. That way, you have multiple functions with the same name of wich the right one is chosen based upon the context (return type needed, arguments). Or you could use a single function, with the return type set to Object, wich is a generic type.

link|flag
First, you mean overloading, not overriding. Second, there's no way to overload a method with the same signature but different return types. Third, returning an object doesn't solve the problem - we need a way to choose which type we want out. – lc Dec 25 '08 at 17:01
-1 because you can earn a badge by deleting your first post with 3 down-votes. :) – MusiGenesis Dec 25 '08 at 17:16
Funny. Very funny. – FrozenFire Dec 28 '08 at 11:50

Your Answer

Get an OpenID
or

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