isnumeric equivilent in .net

  • Thread starter Thread starter Doug
  • Start date Start date
D

Doug

Is there a simple way to accomplish the following without
importing vb6 into a .net project?

If IsNumeric(txtTextBox1.Text) Then....
 
Hi Doug,

This is a full .Net statement in VB.net (not a compatible one)

If IsNumeric(txtTextBox1.text)

It is not in C#.

I hope this helps

Cor
 
Back
Top