I'm talking about getting the value of the Description attribute that is defined for a field, marked with "<---- THIS PUPPY" in the code sample below:
''' <summary>
''' Requirement Key
''' </summary>
''' <remarks></remarks>
<Browsable(False), _
BusinessFieldDisplayInEditor(), _
Description("Requirement Key"), _ <---- THIS PUPPY
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)> _
Public Property [RequirementKey]() As System.Int32
Get
Return CType(Me.CurrentRow.Item("RequirementKey"), System.Int32)
End Get
Set(ByVal value As System.Int32)
Me.CurrentRow.Item("RequirementKey") = value
End Set
End Property