Tagged Questions

5
votes
1answer
119 views

How to use IsNumeric method in MonoDevelop by using Microsoft.VisualBasic reference?

What I am trying to do is to check whether the float input is a number or not. I am being asked to do so by using IsNumeric() method. The problem is that I am using MonoDevelop and I can't figure out ...
2
votes
10answers
4k views

VB6 Can IsNumeric be wrong?

Is it possible to test a string with IsNumeric() and for it to return true, but when you cast that same string to an integer using CInt() and assign it to a variable of type integer that it will give ...