Hi.
I've been using Ghostdoc for commenting in a few C# courses and I really like the functionallity.
I'm now reading a VB course and ghostdoc (I have v.2.5) seems to work fine here as well. The teacher of the course want the students to comment each class like the following:
'Name:ClassName.vb
'Creator: My Name
'Created: 2009-06-29
'Revised: 2009-06-30
Public Class ClassName
'code
End Class
This becomes a bit tedious when the numbers of files increase and I'm wondering if anyone here knows if and how Ghostdoc can do this for me, i.e. automatically writing the current class name, creation date and revision date etc., when commenting the Class so it becomes something similar to this:
''' <summary>
''' Name:ClassName.vb
''' Creator: My Name
''' Created: 2009-06-29
''' 'Revised: 2009-06-30
''' </summary>
Public Class ClassName
Note that i only want this on the Class not on the Methods and other things. Thank you in advance,
Calle
Calle Liedberg