CC#•Created by exove on 3/4/2023 in #help ❔ Need help explaining precedence in C#
"Right-associative operators are evaluated in order from right to left. The assignment operators, the null-coalescing operators, lambdas, and the conditional operator ?: are right-associative. For example, x = y = z is evaluated as x = (y = z)."