Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class that needs to have a variable of an unknown numeric type. I need to get the data type from a specific column at run time, then cast/instantiate the class variable as that type, and then keep a running total of that column as I iterate rows. I thought about representing my class variable as dynamic, but that doesn't sit right with me. I also thought about using a generic method, but again, I feel like there's a better way to do this. A generic property would be great, but, well, you know how that story ends.

Updated, here's what's left of the code I've been working with:

dynamic dc = dataRow["MyColumnName"];
var tempValue = Convert.ChangeType(dataRow["MyColumnName"], Type.GetType(dc.GetType().ToString())); 
total+= (Decimal)tempValue;
share|improve this question
Could you provide your tried code – Cuong Le Oct 31 '12 at 2:57
that's weird, why you dont know the type of column "MyColumnName"? – Cuong Le Oct 31 '12 at 15:07
It could be passed in as an int, decimal, long, etc. – YuckMouth Oct 31 '12 at 15:27

1 Answer

up vote 0 down vote accepted

I ended up solving it like this:

public int MyMethod<T>(DataTable myDataTable)
{
    dynamic myTempVariable = default(T);
    ...
}

It's not a perfect solution (I didn't want to have to know the column data type before calling the method), but this gives me the flexibility I wanted inside of the method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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