VBA IsNumeric equivalent?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In VBA, you can use IsNumeric to return True or False if the value being
tested is numeric. Is there an equivalent to this in VB.NET?
 
Joel,
In VBA, you can use IsNumeric to return True or False if the value being
tested is numeric. Is there an equivalent to this in VB.NET?

IsNumeric

I hope this helps,

Cor
 
Hi Joel,
IsNumeric returns True if the entire expression is recognized as a number;
otherwise, it returns False

The same can be used.

Happy Coding
 
Back
Top