How2停止VS2005重新格式化

How2停止VS2005重新格式化

本文介绍了How2停止VS2005重新格式化#region in Source Co的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

VS2005 2.0 Beta 2注意到我在我正在使用我的

裤子来讨论这个问题。


使用区域来管理IDE中的源代码是非常有用的,但是我希望
更喜欢在编辑器的最左边缘对齐区域文本,即

margin-left 0;就是这样。


如果我尝试按照我喜欢的方式格式化reqions,下面的示例显示了我更喜欢的内容以及VS2005如何重新格式化

区域。我想知道在工具>中是否有

方法选项我可能不会理解为可以用来阻止VS2005重新格式化源代码中的区域?
或者这是一个

的错误?


//示例通缉

#region这个区域用于等等等等等等>
...

...

#endregion


// VS2005重新格式化的示例

#region这个区域用于等等等等等等...
...

...

#endregion


<%= Clinton Gallagher

VS2005 2.0 Beta 2 noting I''ve posted (to no avail so far) to the somewhat
deadzone at news://microsoft.public.vsnet.ide and am getting ants in my
pants for some discussion about this issue.

Using regions to manage source code in the IDE is very useful however I
prefer to align the region text on the left-most margin of the editor, i.e.
margin-left 0; that is.

The examples which follow show what I prefer and how VS2005 reformats the
region if I try to format the reqions the way I prefer. I wonder if there is
a method in Tools > Options I may not undetrstand that can be used to
prevent VS2005 from reformatting the regions in my source code? Or is this a
bug?

// Example Wanted
#region This region used for blah blah blah
...
...
#endregion

// Example Unwanted Reformatted By VS2005
#region This region used for blah blah blah
...
...
#endregion

<%= Clinton Gallagher

推荐答案






这篇关于How2停止VS2005重新格式化#region in Source Co的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 18:02