c# how to tell if a number is even code example Example: check if number is even or odd c# int i = 5; if (i % 2 == 0) { // even } else { // odd }