what is the different between Parse and Convert and any one explain following Example
string no = "5";
int a, b;
a = int.Parse(no);
b = Convert.ToInt32(no);
Console.WriteLine(a);
Console.WriteLine(b);
i want explanation a,b;
a = int.Parse(no);
b = Convert.ToInt32(no);
gowthaman8870226416