How do I check if a number is positive or negative in C#? October 12, 2022 by Tarik bool positive = number > 0; bool negative = number < 0;