MonoDevelop中的自动缩进表现得很奇怪。当我添加结束括号时,它会像我这样格式化我的代码:
if (joints.Length != 1) {
IntegrationTest.Fail ("Cat1 should have 1 HingeJoint2D, but has " + joints.Length);
}
我希望它像这样格式化:
if (joints.Length != 1) {
IntegrationTest.Fail ("Cat1 should have 1 HingeJoint2D, but has " + joints.Length);
}
如何更正自动格式化?
答案 0 :(得分:0)
您可以通过转到:
来设置默认值工具 - >自定义政策 - >默认
这应该允许您返回默认格式。