2012-02-10 60 views
2

我在Visual Studio 2010中同時使用vb.net和c#,而讓我惱火的東西是XML Summary塊在vb.net和C#更改Visual Studio XML摘要塊VB.NET v C#顯示

開業摘要塊看起來像這樣

VB

''' <summary> 
''' This is the summary of what the method does 
''' </summary> 

C#

/// <summary> 
/// This is the summary of what the method does 
/// </summary> 

倒塌總結塊看起來像這樣

VB

This is the summary of what the method does 

C#

/// <summary> ... 

在VB中,這是偉大的,你能看到的總結!然而在C#中有很多/// <summary> ...在頁面上是一個眼睛。

有沒有辦法改變C#在Visual Studio中顯示的方式?

回答

1

有沒有辦法改變C#在Visual Studio中顯示的方式?

是的,有,但並不那麼容易。 DevExpress重寫了很多用戶界面 - 但這是棘手和沉重的編程。

沒有這個 - 不,我不這麼認爲。

+0

darn。不是我期待的答案!也許我需要看看'棘手和沉重的編程'部分,並出售一個插件:)感謝您的快速答案 – 2012-02-10 12:28:34

相關問題