chadpeppers
chadpeppers

Reputation: 2057

How to use three slash commenting in Visual Studio Code on OSX?

I am trying to figure out how to use the autofill comments whenever you do the three slashes ///. In Monodevelop and Visual Studio it works but not visual studio code.

The results is similar to this:

/// <summary>
///     Summary Here
/// </summary>
/// <param name="param1">param1 description</param>
/// <param name="param2">param2 description</param>
/// <returns></returns>

Upvotes: 9

Views: 4313

Answers (1)

Ricky Stam
Ricky Stam

Reputation: 2126

Hi you can install below extension:

Visual Studio Marketplace | C# XML Documentation Comment (Keisuke Kato)

Upvotes: 7

Related Questions