How do I turn off Visual Studio's formatting options?

In the Formatting Options, In the Spacing section: there is an option called Ignore spaces in declaration statements Check that option, and VS. NET will not re-format the declarations that you make So, this should work: int I = 5; int melp = 4 But, when you do this, VS. NET will still reformat your code: int i; int melp; I = 5; melp = 4 will become: int i; int melp; I = 5; melp = 4 So, it is really only in declaration statements that VS.NET will ignore the extra spacing you provide.

In the Formatting Options, In the Spacing section: there is an option called 'Ignore spaces in declaration statements'. Check that option, and VS. NET will not re-format the declarations that you make.So, this should work: int I = 5; int melp = 4; But, when you do this, VS.

NET will still reformat your code: int i; int melp; I = 5; melp = 4; will become: int i; int melp; I = 5; melp = 4; So, it is really only in declaration statements that VS. NET will ignore the extra spacing you provide.

Tools -> options -> Text Editor -> C# -> Tabs -> "Keep Tabs.

– Frederik Gheysels Mar 9 '09 at 14:31 If you declarations are spaced using tabs then the answer is yes. – Micah Mar 10 '09 at 13:20.

Tools|Options|C#|Formatting I. Ignore spaces in declaration statements.

There is an option called 'Ignore spaces in declaration statements'. Check that option, and VS.NET will not re-format the declarations that you make. So, it is really only in declaration statements that VS.NET will ignore the extra spacing you provide.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions