Question
Multiple Choice
You are developing an rental property web application for RentBin that includes a class named Order. The applicaton will store a collecton of Order objects. The collecton must meet the following requirements:
- Use strongly typed members.
- Process Order objects in frst-in-frst-out order.
- Store values for each Order object.
- Use zero-based indices.
Which collecton type should you use?
- A. Queue<T>
- B. SortedList
- C. LinkedList<T>
- D. Array<T>