How would I get a string representation of the value stored in a property's DefaultValue() attribute?
Adam
Code:
<DefaultValue([b][red]"MyItem"[/red][/b])> _
Public Property ColumnLabel() As String
Get
Return _colLabel
End Get
Set(ByVal Value As String)
_colLabel = Value
End Set
End Property
Adam