如何防止骑手在初始化的切碎元素之间生成
}, {
?
我浏览了Editor --> Code Style --> Braces Layout/Line Breaks and Wrapping
,但我可能漏掉了一些东西。当然,这种有点奇怪的结构不是强加给我们的吗?
骑手做什么:
Dictionary<string, string[]> rider = new() {
{
"first", new[] {
"a", "b", "c",
"d", "e", "f"
}
}, { // <-- Not desired
"first", new[] {
"a", "b", "c",
"d", "e", "f"
}
};
首选:
Dictionary<string, string[]> rider = new() {
{
"first", new[] {
"a", "b", "c",
"d", "e", "f"
}
},
{ // <-- Want this
"first", new[] {
"a", "b", "c",
"d", "e", "f"
}
};