有时当我在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.