bool allPositive = array.All(x => x > 0);
bool allNonNegative = array.All(x => x >= 0);
Login to post response