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

Implement ICollection<TNoteEnum> for NoteCollection #15

Closed TheBoxyBear closed 3 years ago

TheBoxyBear commented 3 years ago

This would give more purpose to the extra methods using the enum and guarantee compliance, allowing the use of LINQ on a NoteCollection using the enum instead of the note object.

TheBoxyBear commented 3 years ago

This causes conflicts trying to use LINQ on a NoteCollection. ICollection methods can be used with the enum through LINQ such as Contains using Any. Would add a Remove method using the enum as this cannot be done with LINQ.