Contango
Contango

Reputation: 80372

Method to justify text within comments in Visual Studio?

Is there an automated method to justify comments in Visual Studio?

Example:

/// This is a comment
/// that needs to be justified so every line is roughly 120 chars long.
/// Yes I could do it manually
/// but if I'm faced with a 60-line comment I would rather kiss my own toe.

Upvotes: 1

Views: 741

Answers (2)

Contango
Contango

Reputation: 80372

See Comment reflower for Visual Studio.

I have been using this for years, and it works brilliantly.

Upvotes: 0

Martin Liversage
Martin Liversage

Reputation: 106926

You can use the freely available CommentReflower add-in.

Upvotes: 3

Related Questions