VB.net: Custom ' TODO: List on an Interface
        Posted  
        
            by Shiftbit
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Shiftbit
        
        
        
        Published on 2010-05-21T17:06:13Z
        Indexed on 
            2010/05/21
            17:10 UTC
        
        
        Read the original article
        Hit count: 331
        
How do I add my own todo and comments list to appear on Interfaces? I want it to pop up like IDisposable does:
Public Class Foo : Implements IDisposable
    Private disposedValue As Boolean = False        ' To detect redundant calls
    ' IDisposable
    Protected Overridable Sub Dispose(ByVal disposing As Boolean)
        If Not Me.disposedValue Then
            If disposing Then
                ' TODO: free other state (managed objects).
            End If
            ' TODO: free your own state (unmanaged objects).
            ' TODO: set large fields to null.
        End If
        Me.disposedValue = True
    End Sub
#Region " IDisposable Support "
    ' This code added by Visual Basic to correctly implement the disposable pattern.
    Public Sub Dispose() Implements IDisposable.Dispose
        ' Do not change this code.  Put cleanup code in Dispose(ByVal disposing As Boolean) above.
        Dispose(True)
        GC.SuppressFinalize(Me)
    End Sub
#End Region
End Class
Whenever I enter my own comments and todo list they are never autogenerated like IDisposable Interface does. I would like my own Interfaces to preserve the comments so that I can share my Interfaces with in source documentation.
© Stack Overflow or respective owner