Hi,
I have a VB method that has the same name as a reserved keyword. The keyword is surrounded in square brackets as follows;
Public Sub [Stop]()
End Sub
However, when this method is displayed in the completion list, the name appears still with the square brackets. I would have expected the square brackets to have been removed, which is the behaviour in Visual Studio.
Because the square brackets are present, it gives us the following difficulties;
- The method name appears at the end of the completion list
- If the method is selected, it appears in the code editor with the square brackets still around it, even though this is not neccessary
Could this behaviour be changed?
Thanks in advance
Matt Swanton