I have a asp.net mvc page with an array of checkboxes that gets posted to an insert-method.
And I have this string[] UsergroupIDs, that gets mapped properly, but it contatins “false”-values, and is in string[].
Is there some easy way of cast it to int[] and remove the “false”-values?
Using the .Select and .Where if possible? 🙂
/M
First, filter the
falsevalues. Then parse them: