In VS 2003 app, there is a Dataset in which has a column named as 3M_AVG_UNITS. It works fine in VS 2003 but aftter conversion to VS 2005, it caused a warnings message: Name '_3M_AVT_UNITS' is not CLS-Compliant'. If I double click warnings message, there is a green wave line under _3M_AVG_UNITSColumn.
How to get rid of this warnings message?
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property _3M_AVG_UNITSColumn() As System.Data.DataColumn
Get
Return Me.column_3M_AVG_UNITS
End Get
End Property