i have an array of objects (Car[] for example) and there is an IsAvailable Property on the object
i want to use the full array (where IsAvailable is true for some items and false for some others) as the input and return a new array which includes only the items that have IsAvailable = true.
If you’re using C# 3.0 or better…
And if you don’t have access to LINQ (you’re using an older version of .NET)…