Mukarillo/UnityDynamicScrollRect

Use IList instead of an array to make solution more flexible

eltonsrc opened this issue · 1 comments

If you make a little change and use IList interface instead of info array list, your solution will be prepared for use in new scenarios.

For example, I can't load all information and store it in an array, because it is too big. But if I can use an IList, I can implement a way to load only information which dynamic scroll needs.

Implementation in commit:
fd643f4

Thanks for the feedback!