G
Guest
Stupid question: In VB.NET how do you group similar variables together? For
example, I have these two fields:
Dim EmployeeFirstName As String
Dim EmployeeLastName As String
Can't first and last name be grouped together in an employee 'group' like
this:
Dim Employee
FirstName As String
LastName As String
so that you can reference the first and last name like this:
Employee.FirstName
Employee.LastName
Thanks!
John
example, I have these two fields:
Dim EmployeeFirstName As String
Dim EmployeeLastName As String
Can't first and last name be grouped together in an employee 'group' like
this:
Dim Employee
FirstName As String
LastName As String
so that you can reference the first and last name like this:
Employee.FirstName
Employee.LastName
Thanks!
John