有没有办法在 Visual Studio 中锁定或冻结部分代码以防止格式化?
我想保护以下代码:
Method("This is a long text", 12 , true );
Method("Hi", 558, true );
Method("Short text", 1 , false );
被格式化为:
Method("This is a long text", 12, true);
Method("Hi", 558, true);
Method("Short text", 1, false);
但仍然能够格式化文档的其余部分。