Is there a way to block or freeze part of the code for formatting in Visual Studio?
I want to protect the following code:
Method("This is a long text", 12 , true ); Method("Hi", 558, true ); Method("Short text", 1 , false );
for formatting:
Method("This is a long text", 12, true); Method("Hi", 558, true); Method("Short text", 1, false);
but you can still format the rest of the document.
Mohsen sarkar
source share