Billy Thacker
Billy Thacker

Reputation: 11

I have a DLL program and am trying to update it with Descriptions but can't get them to work

I have a DLL program that I wrote a few years back and am trying to update it with Descriptions 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:

enter image description here

Upvotes: 1

Views: 41

Answers (1)

J.Salas
J.Salas

Reputation: 1363

Try inserting this before

    /// <summary>
    /// Get email Information
    /// </summary>

Upvotes: 0

Related Questions