Reputation: 11
I have a DLL program that I wrote a few years back and am trying to update it with Description
s but can't get them to work.
Here is my code:
<Browsable(True)>
<EditorBrowsable(EditorBrowsableState.Always)>
<Description("Get email Information")>
<DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)>
Public Function getemail(ByVal source As String) As String()
and this is what I am trying to do - the part in the circle:
Upvotes: 1
Views: 41
Reputation: 1363
Try inserting this before
/// <summary>
/// Get email Information
/// </summary>
Upvotes: 0