isnumeric equivilent in .net

D

Doug

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

If IsNumeric(txtTextBox1.Text) Then....
 
C

Cor

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top