What's a great way to convert a string to a number in C#?
- by Sergio Tapia
I'm familiar with:
Convert.ToInt32(texthere);
But is there another cleaner way to do it? I like having readable code for coworkers and I'm always on the lookout for anything that'll make my work seem more obvious.