I Have some confusion while using Convert.Int32() and int32.Parse(). When we use Convert.Int32() or int32.Parse()...
|
1
|
|
|
|
|
|
Convert.ToInt32() will attempt to convert anything - be it char, double, object, what have you - into an Int32. Int32.Parse() only works for strings. EDIT: In response to OP's comment, I have a quote taken from this thread:
|
||||||||||||
|
|
|
Expanding on Matthew's answer. Convert.ToInt32 allows for user defined conversions in an extendable manner. For any non-predefined conversion (mostly primitives), The Convert class will check and see if the type implements IConventible and if so use it to allow the object to define it's own conversion to Int32 (and many other types). |
||
|
|
|
|
See this article for more information |
||
|
|
|
|
According to MSDN Parse() is used for string to int where Convert is much more versatile for conversions. Int32.Parse() Convert.Int32() should be your main choice |
||
|
|
