2

I have used /// snippet in C# when I use Visual Studio 2010 and this will create a pre-defined comment block.

When I use VB.NET the same princioal using ''' doesn't work. I can make my own snippets to intellisense, but is there predefined snippet for this?

user4845680
  • 128
  • 2
  • 12
  • 1
    See [here](http://stackoverflow.com/questions/108717/vs2005-vb-net-xml-comments-stopped-working) or [here](http://stackoverflow.com/questions/13269307/autogenerating-xml-comments-in-vb-net). – Justin Ryan May 20 '15 at 08:23

1 Answers1

2

In the Project Explorer select your Project and than open the Project Properties. Goto Compile and be sure that "Generate XML documentation file" is checked. Without that option the ''' snipped is disabled in vb .net

Cadburry
  • 1,844
  • 10
  • 21