I have some number of generic lists in my code, that have tens or hundreds elements. Sometimes I need to refill this lists with other objects, so question is: what will be f
If your objects are value types I'd use Clear() to reduce memory future allocations. Otherwise both approaches are almost identical.