TheBoxyBear / charttools

Library for editing Clone Hero song files in .NET
https://theboxybear.github.io/charttools
GNU General Public License v3.0
13 stars 5 forks source link

UniqueList.AddRange is unnecessarily slow #3

Closed TheBoxyBear closed 3 years ago

TheBoxyBear commented 3 years ago

AddRange goes through all items once for every item added to remove duplicates. Should go through the items once and remove all duplicates at once.