int.Parse() and int.TryParse()
What is the difference between int.Parse() and int.TryParse() ?the int.Parse() and int.TryPrase() methods is used to convert a string representation of number to an integer. In case of the string can’t be converted the int.Parse() throws an exceptions where as int.TryParse() return a bool value, false.string text = "500";string text2 = "dotnet";int r...