是否有方法、工具或插件可以自动格式化代码,以便每个语句都在一行上,而不是跨多行换行?例如:
前:
// Store our custom animation data in the Tag property of the model.
model.Tag = new SkinningData(animationClips,
bindPose,
inverseBindPose);
后:
// Store our custom animation data in the Tag property of the model.
model.Tag = new SkinningData(animationClips, bindPose, inverseBindPose);
换句话说,我想采用一些格式类似于 Before 示例的代码并将其转换为 After 格式。
答案1
和去壳你可以做很多事情,不幸的是它必须在 IDE 之外运行(无集成)