如何让 Visual Studio 将我的评论重新排列到多行?

How can I tell Visual Studio to rearrange my comments onto multiple lines?

有时,当我在 Visual Studio 中评论我的代码时,我发现我的评论拖过了我的代码的其余部分。是否有任何快捷方式、方法或扩展可以将这些单行的怪兽重新排列成跨多行的格式良好的注释?格式化文档似乎不会影响评论。

比如说,我写了这么长的评论:

// If at this point the task has not completed it has exceeded the maximum time and a timeout exception should be thrown.

有什么简单的方法可以将其重新排列成如下所示(而不是手动排列)?

// If at this point the task has not completed it has exceeded the maximum
// time and a timeout exception should be thrown.

CodeMaid extension includes Comment Formatting 在指定列换行。