+ 1

Int.Parse or ConvertToInt32 C#

Which one is better(how it works) and how to use it correctly?

27th Apr 2020, 8:13 PM
Mateusz Legend
Mateusz Legend - avatar
1 Respuesta
+ 5
Some insights, found from a quick search on the net. If string is the conversion subject mostly, prefer `TryParse`. Simpler in use and handles invalid conversion subject pretty well 👍 https://www.c-sharpcorner.com/article/uses-of-int-parse-convert-toint-and-int-tryparse/ https://stackoverflow.com/questions/199470/whats-the-main-difference-between-int-parse-and-convert-toint32
27th Apr 2020, 9:18 PM
Ipang