A
apandapion
I have an integer value inside a datarow. Is there a more graceful way
to extract it than this:
int value = Convert.ToInt32(datarow[datacolumn].ToString());
It's already an integer. Is there a way around the conversion?
to extract it than this:
int value = Convert.ToInt32(datarow[datacolumn].ToString());
It's already an integer. Is there a way around the conversion?