Does anyone know how to retrieve the names of the variables/elements within a stucture in vb.net?
Given the following structure:
Structure Employee_Def
Dim EmployeeName as String
Dim EmployeeNumber as Integer
End Structure
Dim Emp as Employee_Def
I would like use something like a 'for each' to display the name(not
the value) of each variable("EmployeeName ", and "EmployeeNumber").
Any help would be greatly appreciated.
