You are viewing a single comment's thread. Return to all comments →
C# string s = Console.ReadLine() ?? ""; int ints = 0; try { ints = int.Parse(s); Console.Write($"{ints}"); } catch { Console.Write("Bad String"); }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 16: Exceptions - String to Integer
You are viewing a single comment's thread. Return to all comments →