
Hello,
I use a SyntaxEditor with VBSyntaxLanguage. The following works:
(note: the | sign denotes the cursor position where the word completion popup pops up)
Dim text As String
text.|
There it shows me the methods of System.String, like "Substring(...)", as expected.
The following does not work:
Dim text
Ctype(text, String).|
It appears that the return type is always object. The same applies for DirectCast, CStr, CInt, etc.
Is there a way to get this to work?