This snippet is from a C# project. All I want to do is remove the elements that don't aren't enabled. But now I have to worry about the difference between a `Collection` and a `Linq.IOrderedEnumerable`. Screenshot attached to show the red squiggles of doom.
```csharp
_samplesToRun = _samplesToRun.Where(sample => sample.IsEnabled);
```
![[Screenshots/Screen Shot 2023-04-12 at 10.29.32 AM.png]]
_This is a page in the collection of [[Chip Overflow/Willies|snippets that give me the willies]]_