Store data in and retrieve data from collections

You want to store a group of orders and make sure that a user can easily select an order by its order number. Which collection do you use?

Queue<Order>
Dictionary<int,Order>
HashSet<Order>
List<Order>