Link to home
Start Free TrialLog in
Avatar of brgdotnet
brgdotnetFlag for United States of America

asked on

Property Attributes

Hello Experts,

I am working with a VB .net project, and am looking at some of the defined properties. There are several items above the property that are labeled "AttributeColumnName" AttributeDBColumnName. I have never seen that before in VB.net. Can someone familiar with VB.net explain it to me? Why are these attributes above the property name? Can someone point me to some online documentation on this?

<AttributeColumnName("CITY_STATE"), AtributeDBColumnName("CITY_STATE"), AttributeDataType("char"),AttributeKeywordField("pCITY_STATE"),AttributeFieldLen(8),AttributeColumnIndex(12)>
Public Property CITY_STATE() AS String
 Get
    Return m_strCITY_STATE
 End Get
Set(ByVal strVal AS String)
   m_strCITY_STATE = strVal
End Set
End Property
SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial