If statements let your program make decisions! The code inside only runs IF a condition is true.
IF it's raining outside,
THEN take an umbrella
using System; class Program{ static void Main() { int age = 16; if (age >= 18) { Console.WriteLine("You can vote!"); } }}if - The keyword that starts the condition(age >= 18) - The condition to check{ } - Code block that runs if true