请问组件属性说明怎么写?
请问属性的说明怎么写?例如
public Property Timeout as Long
Get
...
End Get
Set(value as Long)
...
End Set
EndProperty
写完这段后,想在VB的属性页上选中这个属性进行设置时,可以在下面的说明框上显示信息"链接超时时间设置值"
[解决办法]
使用DescriptionAttribute
<Description("链接超时时间设置值"), Category("Appearance")> _
public Property Timeout as Long