Question:You are currently in the process of reviewing an application that was created by a fellow
developer.
The application that you are reviewing includes a declaration for a collection named EmployeeList, which
stores Employee objects.
The declaration is shown below:
Public Class EmployeeList
Inherits Enumerator
Implements IEnumerable
' Class implementation
End Class
You require the ability to iterate through the EmployeeList with minimum development effort.
What should you do? -(VB.NET)
A Utilize the Switch statement
B Utilize the Do While statement
C Utilize the For Each statement
D Utilize the If statement
+ AnswerC
+ Report