What's the best way to do the equivalent of int.TryParse (which is found in .net 2.0 onwards) using .net 1.1.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Obviously,
|
|||||
|
|
|
|||||
|
|
Koistya almost had it. No var command in .NET 1.1. If I may be so bold:
|
|||
|
|
|
There is a tryparse for double, so if you use that, choose the "NumberStyles.Integer" option and check that the resulting double is within the boundaries of Int32, you can determine if you string is an integer without throwing an exception. hope this helps, jamie
|
||||
|
|