vote up 1 vote down star

Hi,

Whats the difference between:

int.Parse and Int32.Parse, decimal.Parse and Decimal.Parse string.Parse and String.Parse

etc

i.e. why are there upper and lower case versions, and which should i use in what situation?

Trull

Edit: Sorry for the duplicate, i'm having search issues today, dont seem to be able to find anything!

flag

45% accept rate

closed as exact duplicate by Lasse V. Karlsen Nov 20 '08 at 14:47

2 Answers

vote up 4 vote down check

This is actually the same question as these

link|flag
vote up 1 vote down

There is none. int, decimal, string etc. are just aliases for their corresponding types.

In general, I prefer the Type.Parse over the type.Parse, but this is just a matter of personal choice (looks more readable to me).

link|flag

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