2016-01-24 32 views
0

有時,當我在Visual Studio中評論我的代碼時,我發現我的評論拖出了我的代碼的其餘部分。是否有任何快捷方式,方法或擴展將這些單行鉅變重新排列成分佈在多行中的格式良好的評論?格式化文檔似乎不影響註釋。如何告訴Visual Studio將我的評論重新排列到多行上?

說,例如,我寫了這樣一個長註釋:

// If at this point the task has not completed it has exceeded the maximum time and a timeout exception should be thrown. 

會是怎樣一種簡單的方法將其重新組合成類似如下(除手)?

// If at this point the task has not completed it has exceeded the maximum 
// time and a timeout exception should be thrown. 
+2

我不認爲這是可能的。有一點需要考慮的是代碼中的註釋通常被認爲是代碼味道(一個壞主意)。你應該真正重構你的代碼到更小的方法中,並恰當地命名這些方法來顯示你的意圖。 – Andrew

+0

謝謝@安德魯。我沒有真正想到這一點。 +1 –

+1

我建議閱讀Robert C Martin所着的一本名爲「Clean Code」的書,它會改變你對編碼的看法。 – Andrew

回答