Is it possible to override the auto-indentation of comments in VB.NET (Using visual studio 2008)?
Please see the comment above the second Case Statement in the code below for context.
The IDE auto-indents the comment beyond the following Case Statement. I would like to override this behavior and bring it in line with the C in Case that follows.
Select Case E.Type
'General Events
Case EventType.General_StartServer
'Initialize the Server Brain (ME)
GLOBAL__I_AM_THE_SERVER = True
Init()
'Server Alerts
Case EventType.ServerAlert_Chat
EventManager.SendEventToAllClients(New GameEvent(EventType.ClientAlert_Chat, 0, 0, 0, E.Str))
End Select