Ich habe mich gefragt, ob es eine Möglichkeit gibt (hoffentlich eine Tastenkombination), automatisch generierte Funktionsheader in Visual Studio zu erstellen.
Beispiel:
Private Function Foo(ByVal param1 As String, ByVal param2 As Integer)
Und es würde automatisch so etwas werden ...
'----------------------------------
'Pre:
'Post:
'Author:
'Date:
'Param1 (String):
'Param2 (Integer):
'Summary:
Private Function Foo(ByVal param1 As String, ByVal param2 As Integer)