1

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

The Amateur Coder
  • 789
  • 3
  • 11
  • 33

1 Answers1

0

Try inserting this before

    /// <summary>
    /// Get email Information
    /// </summary>
J.Salas
  • 1,268
  • 1
  • 8
  • 15