vote up 7 vote down star
1

I am using C#,and wanted to know the main difference between the two and which one is preferred to use while coding.

flag

51% accept rate

5 Answers

vote up 12 vote down check

If you've got a string, and you expect it to always be an integer (say, if some web service is handing you an integer in string format), you'd use Int32.Parse(). If you're collecting input from a user, you'd generally user Int32.TryParse(), since it allows you more fine-grained control over the situation when the user enters in invalid input.

Convert.ToInt32() takes an object as its argument, and I believe it invokes Int32.TryParse() when it finds that the object taken as the argument is a string. Convert.ToInt32 also does not throw ArgumentNullException when it's argument is null the way Int32.Parse() does. That also means that Convert.ToInt32() is probably a wee bit slower than Int32.Parse() because it has to ask its argument what it's type is.

link|flag
As others point out, Convert.ToInt32(s) doesn't throw an exception when s is null, but Parse() does. "A bit slower" is completely beside the point as you'll never measure the difference. – Robert Paulson Oct 14 '08 at 1:04
1  
Thanks, Robert! I'm editing my answer for some more completeness. But as far as performance goes, I'll bet the difference in speed would be detectable if you're calling it in a nested loop... – Dave Markle Oct 14 '08 at 13:01
vote up 7 vote down

No difference as such.
Convert.ToInt32 calls int.Parse internally

Except 1 thing where Convert.ToInt32 returns 0 when argument is null
Otherwise both work the same way

link|flag
vote up 1 vote down

TryParse is faster...

http://blogs.msdn.com/ianhu/archive/2005/12/19/505702.aspx

Hope this helps.

link|flag
When you look at the source from TryParse it actually has no exception handling at all - just character manipulation and bit shifting, thanks for the link – Chris S Oct 14 '08 at 14:55
vote up 3 vote down

The difference is this:

Int32.Parse() and Int32.TryParse() can only convert strings. Convert.ToInt32() can take any class that implements IConvertable. If you pass it a string, then they are equivalent, except that you get extra overhead for type comparisons, etc. If you are converting strings, then TryParse() is probably the better option.

link|flag
vote up 2 vote down

Have a look in reflector:

int.Parse("32"):

public static int Parse(string s)
{
    return System.Number.ParseInt32(s, NumberStyles.Integer, NumberFormatInfo.CurrentInfo);
}

which is a call to:

internal static unsafe int ParseInt32(string s, NumberStyles style, NumberFormatInfo info)
{
    byte* stackBuffer = stackalloc byte[1 * 0x72];
    NumberBuffer number = new NumberBuffer(stackBuffer);
    int num = 0;
    StringToNumber(s, style, ref number, info, false);
    if ((style & NumberStyles.AllowHexSpecifier) != NumberStyles.None)
    {
        if (!HexNumberToInt32(ref number, ref num))
        {
            throw new OverflowException(Environment.GetResourceString("Overflow_Int32"));
        }
        return num;
    }
    if (!NumberToInt32(ref number, ref num))
    {
        throw new OverflowException(Environment.GetResourceString("Overflow_Int32"));
    }
    return num;
}

Convert.ToInt32("32"):

public static int ToInt32(string value)
{
    if (value == null)
    {
        return 0;
    }
    return int.Parse(value, CultureInfo.CurrentCulture);
}

As the first (Dave M's) comment says.

link|flag

Your Answer

Get an OpenID
or

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