2012-02-10 62 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

相关问题