Why doesn’t the operator precedence “work” with ++/– i C#? [duplicate]
This question already has answers here: What is the difference between ++i and i++? (21 answers) Closed 14 days ago. According to C#’s operator precedence, ++/– is high on the list (above arithmetic like +, -, etc). This made me believe that if I had a code looking like this: int a = 2; int […]