Parse input string to number and check if it's less than 10.
- Fork this repository to your GitHub account.
- Open solution file in Visual Studio.
- Open file
Exercise.cs
. - Implement the method
IsLessThan10(string input)
so that it parsesinput
string toint
and checks if it's less than 10. - Run with
CTRL+F5
to test it. - If all tests are passed, commit & sync your repository.
- Send a link to your repository for Lab Master (in #slack) to check it.
Hint:
- Google: C# how to parse string to int
- Google: C# int.Parse()
- Google: C# int.TryParse()