gpt4 book ai didi

c# - 如何在 Rider 的调用中配置 lambda 的缩进?

转载 作者:行者123 更新时间:2023-12-04 14:06:27 25 4
gpt4 key购买 nike

我想配置 JetBrains Rider 的代码风格设置。我想像这样格式化一个函数:

protected override JobHandle OnUpdate(JobHandle inputDeps) {
Entities.ForEach((ref PaddleMovementData moveData, in PaddleInputData inputData) => {
moveData.direction = 0;
moveData.direction += Input.GetKey(inputData.upKey) ? 1 : 0;
moveData.direction -= Input.GetKey(inputData.downKey) ? 1 : 0;
}).Run();

return default;
}

然而 Rider 给了我这个:

protected override JobHandle OnUpdate(JobHandle inputDeps) {
Entities.ForEach((ref PaddleMovementData moveData, in PaddleInputData inputData) => {
moveData.direction = 0;
moveData.direction += Input.GetKey(inputData.upKey) ? 1 : 0;
moveData.direction -= Input.GetKey(inputData.downKey) ? 1 : 0;
}
)
.Run();

return default;
}

我找不到解决这个问题的方法。在 CLion 中这是可能的,所以我猜 Rider 也是如此。我该怎么做?

最佳答案

  1. 根据需要格式化代码
  2. 选择您的代码
  3. 使用检测格式

如果存在这样的格式规则,它将显示如下: enter image description here

所以它们是相关的格式设置!

关于c# - 如何在 Rider 的调用中配置 lambda 的缩进?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68333216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com