I read this from msdn about Int32.TryParse()
When this method returns, contains the 32-bit signed integer value equivalent to the number contained in s, if the conversion succeeded, or zero if the conversion failed.
But what happens if the passed string itself is a string representation of '0'. So the TryParse
will return zero. How can I know if it is a success or a failure?