[Solved] check where a list entry is not 0.0 [closed]


To check if a list contains a number: if (myList.Contains(0.0)) ...

To check if a list does NOT contain a number: if (!myList.Contains(0.0)) ...

solved check where a list entry is not 0.0 [closed]