lachlan
New member
- Joined
- Oct 29, 2008
- Messages
- 1
- Programming Experience
- 1-3
Private Enum Customlist
OptionA
OptionB
End Enum
''' <summary>
''' This method does nothing.
''' </summary>
''' <param name="param">An optional option from Customlist options</param>
''' <remarks></remarks>
Private Sub Method(Optional ByVal param As Customlist = Customlist.OptionA)
End Sub