Is there a simpler or alternate way to code the following C# sentence?
if (iValue >= 4 && iValue <= 10) {... other code ...}
Do I need to repeat the iValue
twice?
I have seen a structure similar to _ = ...some code...
but I am not familiar with that leading underscore?