포럼: 掲示板 (Thread #6495)

引数が列挙体のPropertyのコメントが生成されない (2004-12-01 15:14 by Anonymous #12020)

おかしいなと思ったところがあったので投稿いたします.

VS.NET2003
VB.NET
NDocv1.2日本語版Rev4
VBCommenter
を使っています.

Propertyで引数に列挙体があるとPropertyのコメントが生成されません.
SubとかFunctionに列挙体の引数を入れた場合はコメントは生成されます.

▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽▽

Public Class Hoge

Enum hogeKbn
a
b
End Enum

''' -----------------------------------------------------------------------------
''' <summary>
''' 表示される(Subだから)
''' </summary>
''' <param name="kbn"></param>
''' <remarks>
''' </remarks>
''' <history>
''' [Hoge] 2004/12/01 Created
''' </history>
''' -----------------------------------------------------------------------------
Public Sub no1(ByVal kbn As Hoge.hogeKbn)

End Sub

''' -----------------------------------------------------------------------------
''' <summary>
''' 表示されない
''' </summary>
''' <param name="kbn"></param>
''' <value></value>
''' <remarks>
''' </remarks>
''' <history>
''' [Hoge] 2004/12/01 Created
''' </history>
''' -----------------------------------------------------------------------------
Public Property no2(ByVal kbn As Hoge.hogeKbn) As String
Get

End Get
Set(ByVal Value As String)

End Set
End Property

''' -----------------------------------------------------------------------------
''' <summary>
''' 表示される(引数が列挙体ではない)
''' </summary>
''' <param name="kbnName"></param>
''' <value></value>
''' <remarks>
''' </remarks>
''' <history>
''' [Hoge] 2004/12/01 Created
''' </history>
''' -----------------------------------------------------------------------------
Public Property no3(ByVal kbnName As String) As String
Get

End Get
Set(ByVal Value As String)

End Set
End Property

''' -----------------------------------------------------------------------------
''' <summary>
''' 表示される(Functionだから)
''' </summary>
''' <param name="kbn"></param>
''' <returns></returns>
''' <remarks>
''' </remarks>
''' <history>
''' [Hoge] 2004/12/01 Created
''' </history>
''' -----------------------------------------------------------------------------
Public Function no4(ByVal kbn As Hoge.hogeKbn) As String

End Function

End Class

△△△△△△△△△△△△△△△△△△△△△

Reply to #12020×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login