numeric validation
C#
3
Posts
3
Posters
0
Views
1
Watching
-
How to validate a variable for numeric value. Is any function is there to validat
-
How to validate a variable for numeric value. Is any function is there to validat
-
How to validate a variable for numeric value. Is any function is there to validat
int n; if(int.TryParse(s, out n)) { // n now contains your int } else { // was not a number. }
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog