I want to check whether a string is only numeric, or is alphanumeric.
For example :
string test = "2323212343243423333";
string test1 = "34323df23233232323e";
I want to check test having number only or not. If the whole string having number means it returns true. Otherwise it returns false.
How can i do this?