vb.net equivalent of vb6 function attributes -
i have follow class in vb6
:
public function newenum() attribute newenum.vb_usermemid = -4 attribute newenum.vb_memberflags = "40" newenum = mcolfields.[_newenum] end function
what equivalent attributes in vb.net?
know have put attributes in <>
and found this post, didn't solve problem.
getenumerator() exact equivalent. gets exposed newenum in <comvisible(true)>
code. implement system.collections.ienumerable interface, non-generic one.
Comments
Post a Comment