c# less than and equal to
if (5 <= 6) {
  //Anything here will be called if 5 is less than OR equal to 6.
  //Meaning this will be called.
}
if (6 <= 6) {
  //Anything here will be called if 6 is less 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 less than 6,
}
