[2005] Class Instances Please help
I need to be able to create an instance of a list class to store instances of an employee class.
my employee class is:
Public Class Employee
Public EmployeeID As Integer
Public EmployeeType As Integer
Public EmployeeName As String
Public EmployeeAddress As String
Public EmployeeSSN As Double
End Class
I really appreciate it in advanced
Re: [2005] Class Instances Please help
You need to create a list to hold employee instances?
vb Code:
Private empList As New List(Of Employee)