2009-11-10 80 views
4

是否有可能覆蓋在VB.NET評論自動縮進(使用Visual Studio 2008)?是否有可能重寫的VB.NET/VS2008評論自動縮進?

請參見下面的代碼上下文第二Case語句上述評論。

的IDE自動縮進超出接下來的case語句的註釋。我想覆蓋這種行爲,並使其與隨後的Case中的C一致。

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 
+0

此之後仍然VS的非常惱人的多個版本。 – 2016-04-28 15:14:49

回答

1

儘管您可以完全關閉重新格式化,但我敢打賭,這不是您想到的解決方案。

個人而言,在給定的代碼,我把我的意見屬於它下面的情況。

Select Case E.Type 
    Case EventType.General_StartServer 
     ' The server has started, so we need to do blah. 

    Case EventType.ServerAlert_Chat 
     ' A chat has sent a server alert, so do blah. 
End Select 
1

我想你在菜單中尋找這樣的:

工具 - >選項 - >編輯 - 文本> Basic-> VB Specific->漂亮的房源 (格式化)的代碼

MSDN

漂亮列表(重新格式化)代碼

文本編輯器將您的代碼重新格式化爲 合適。當 選擇此選項,代碼編輯器會:

  • 對齊您的代碼以正確的標籤位置
+0

我很高興它放置代碼的位置,只是不是幾條評論。我運氣不好嗎? – 2009-11-10 23:13:23

+0

除了像@Jason所說的那樣,在case語句之後加入評論之外,我認爲是這樣。或者,像Resharper這樣的工具將允許您非常精細地定製大量重新格式化選項,並可能適合您。 – 2009-11-10 23:29:30

相關問題