Exact duplicate: .Net Parse versus Convert
can anyone help me?
Exact duplicate: .Net Parse versus Convert can anyone help me?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Convert.ToInt32(string)andInt32.Parse(string)yield identical results except when the string is actually a null.In this case,
Int32.Parse(null)throws anArgumentNullExceptionBut,
Convert.ToInt32(null)returns a zero.So it is better to use
Int32.Parse(string)