G Guest Aug 19, 2005 #1 In VB I used to use the function IsNumeric() to test that characters entered in a field where numeric. What is the C# equivqlent? Thanks
In VB I used to use the function IsNumeric() to test that characters entered in a field where numeric. What is the C# equivqlent? Thanks
T Tim Haughton Aug 19, 2005 #2 Char.IsNumber( char c ) would be a good place to start. -- Regards, Tim Haughton Agitek http://agitek.co.uk http://blogitek.com/timhaughton
Char.IsNumber( char c ) would be a good place to start. -- Regards, Tim Haughton Agitek http://agitek.co.uk http://blogitek.com/timhaughton
G Guest Aug 19, 2005 #3 That is exactly what I was looking! And its constructor is nicely overloaded. Thanks