
Hi,
I've noticed some defects in IntelliPrompt for VB.NET, when I've typed the code below in SDI Editor:1. Member list for local variable 's' doesn't appear inside 'With' statement if I type a dot - I believe there should be members of System.String.
2. A dot before "ToString" (inside 'With' statement) is highlighted as error.
3. There's no Quick Info or member list for loop variable 'c' inside 'For Each' statement.
Thanks,
Nik
I've noticed some defects in IntelliPrompt for VB.NET, when I've typed the code below in SDI Editor:
Dim s As String = "Hello"
With s
Console.Write(.ToString())
End With
For Each c As Char In s
Console.Write(c.ToString())
Next c
2. A dot before "ToString" (inside 'With' statement) is highlighted as error.
3. There's no Quick Info or member list for loop variable 'c' inside 'For Each' statement.
Thanks,
Nik