Hi, I have created a custom Server Control and I want to add a description to the properties and events that the control holds. I have looked over the Internet and came up with the following...
Code:
<Description("G ets/Set somthing for the property")>_
public property Somthing() as Boolean
Get
end get
Set
end set
End property
Unfortunately this does not seem to work in visual studio .net 2008.
I am not sure if i am missing somthing off can anyone help
Thanks in advanvce
altaafhussein
Code:
<Description("G ets/Set somthing for the property")>_
public property Somthing() as Boolean
Get
end get
Set
end set
End property
Unfortunately this does not seem to work in visual studio .net 2008.
I am not sure if i am missing somthing off can anyone help
Thanks in advanvce
altaafhussein
Comment