I have the follow class in vb6
:
Public Function NewEnum()
Attribute NewEnum.VB_UserMemId = -4
Attribute NewEnum.VB_MemberFlags = "40"
NewEnum = mcolFields.[_NewEnum]
End Function
What would the equivalent attributes be in vb.net?
I know that you have to put attributes in <>
and I also found this SO post, however it didn't solve my problem.