I am trying to bind a List to a repeater. I have converted the list into an array by using the ToArray() method and now have a arr
List
ToArray()
You should use ToList() method. (Don't forget about System.Linq namespace)
ex.:
IList models = Builder.CreateListOfSize(10).Build(); List lstMOdels = models.ToList();