To know the difference between ToArray(), ToList(), and ToDisctionary(), you need to know the difference between an
Array, a
Generic List, and a
Dictionary.
ToArray() will return an array of objects. ToList() will return a Generic List of objects. ToDictionary() will return a generic Dictionary of objects.