I\'m just curious as to whether there is something built into either the C# language or the .NET Framework that tests to see if something is an integer
if (x
its simple... use this piece of code
bool anyname = your_string_Name.All(char.IsDigit);
it will return true if your string have integer other wise false...