In VB.net, if you need to convert number/string (assuming its number) to Int16, there isn't any function as Cint16 as there is for CInt.
Instead you would write :
Convert.Int16(value)
or
CType(value, Int16)
Instead you would write :
Convert.Int16(value)
or
CType(value, Int16)
No comments:
Post a Comment