c# - More succinct code example -


is there more succinct way of writing this?

articlecount += 1; if (articlecount > 4) {     // reset counter 1     articlecount = 1; } 

yes:

if (++articlecount > 4) articlecount = 1; 

Comments