C
Colin Halliday
I am experiencing something weird using Visual Studio 2005/ Visual Basic.net 2005.
When I code any string manipulation members, instead of returning an integer I receive a hex value.
Example
Dim strName as string
strName = "Hello World"
In the Immediate Window:
?strName.Length
Returns &HB instead of 11.
?strName.contains("Hello") returns false
?tablename.LastIndexOf("o")
&H7
Any idea what is going on???
Thanks.
When I code any string manipulation members, instead of returning an integer I receive a hex value.
Example
Dim strName as string
strName = "Hello World"
In the Immediate Window:
?strName.Length
Returns &HB instead of 11.
?strName.contains("Hello") returns false
?tablename.LastIndexOf("o")
&H7
Any idea what is going on???
Thanks.