J
Jon
Hello all,
I'm trying to do the following:
int my = null ?? Convert.ToInt32(row.Cells[2].Value) as ow.Cells
[2].Value could be null.
Obviously this isn't working.
What's the best way to get a value from the cell into the nullable
int?
Thanks
I'm trying to do the following:
int my = null ?? Convert.ToInt32(row.Cells[2].Value) as ow.Cells
[2].Value could be null.
Obviously this isn't working.
What's the best way to get a value from the cell into the nullable
int?
Thanks