Visual Studio Intellisense Comments

Posts   
 
    
tmaddox
User
Posts: 9
Joined: 02-Jul-2007
# Posted on: 03-Jul-2007 00:31:32   

In Visual Studio whenver you type ''' (3 apostriphys) above a method it generates the following comments/parameters based on the method below it.

    ''' <summary>
    ''' 
    ''' </summary>
    ''' <param name="sender"></param>
    ''' <param name="e"></param>
    ''' <remarks></remarks>
 Private Sub _lnkFilmWeeklyAttendance_Click(ByVal sender As Object, ByVal e As System.EventArgs)

Why when working inside LLBLGen Entity/Collection "Custom Code" regions, does it not pick this up? We where wondering if there is a visual studio preference we need to change? After using this feature of VS for awhile, it gets annoying to have to manually type your documentation comments.

We have about 5 developers working with LLBLGen, all using Visual Studio 2005 Professional. We all have the same problem.

Thanks!

Travis

daelmo avatar
daelmo
Support Team
Posts: 8245
Joined: 28-Nov-2005
# Posted on: 03-Jul-2007 06:55:22   

Hey Travis... seems to be another VS bug.. What VS version are you using? What ServicePacks have you installed? Have you tried Ghostdoc (http://www.roland-weigelt.de/ghostdoc/) ?

David Elizondo | LLBLGen Support Team
Otis avatar
Otis
LLBLGen Pro Team
Posts: 39912
Joined: 17-Aug-2003
# Posted on: 03-Jul-2007 10:49:07   

If possible, also try partial classes instead. Intellisense sometimes bugs. In C# it also sometimes dissapears in properties, though not as often as in 2003.

Frans Bouma | Lead developer LLBLGen Pro
tmaddox
User
Posts: 9
Joined: 02-Jul-2007
# Posted on: 03-Jul-2007 16:57:48   

Thanks I was just wondering if there was a way around it.

It works fine in the entire rest of the solution, including our own custom classes, regioned areas, code behinds, etc. But the moment we goto the domain layer it doesn't work inside the LLBLGen Custom Code Regions.

I just went ahead and made a macro that is able to do it for me. Maybe i'm just lazy.