Explain with Example if possible….
For example
int s=System.Convert.ToInt64(txtno.Text);
int k=Convert.ToInt64(txtno.Text);
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.
They are the same.
On top of the file you have the line
That means that when you use types and classes defined in the System namespace, you do not need to specify “System” explicitly.
Thus,
System.ConvertandConvertrefer to exactly the same thing, the latter is just shorter to write.