c# greater than and equal to
if (7 >= 6) { //Anything here will be called if 7 is greater than OR equal to 6. //Meaning this will be called. } if (6 >= 6) { //Anything here will be called if 6 is greater than OR equal to 6, //Meaning this will be called. } if (6 > 6) { //The reason you may want to use ">=" instead of ">" is because //This statement will not be called, which you may not want. //Anything here will be called if 6 is greater than 6. }