String parsing extensions that wrap TryParse methods in order to use it in a more fluent way. If the TryParse returns false then the default value will be returned.
A few examples:
"123".ToByte();
"1234".ToShort();
"1234".ToInt();
"1234".ToLong();
"https://google.com".ToUri();