Just a question about Cint()

  • Thread starter Thread starter Kenneth
  • Start date Start date
Kenneth,
In addition to Jorge's comments:

Integer.Parse is a Framework function.

CInt is a long time VB "intrinsic" function.

Integer.Parse will only parse strings, while CInt will convert any type to
an Integer, if that conversion is defined.

Hope this helps
Jay
 
Back
Top