Iterating thru User-Defined Data Type Property

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Public Structure MyDataType
dim LName as string
dim FName as string

'other procedures/methods/property statements

End Structure

please look at the codes above...

is there any way to iterate thru the variables by using

for... each statement

like for example

for each variable in MyDataType
next

Please help.

Thanks in advance.
 
Back
Top