5

I've very recently started coding in C# for a game I'm making and I can say the most common mistake I make is missing one of these little shits ";". I always look at my code like "This looks good to me" then after hours of looking through Visual Studio always comes through to tell me how bad I've messed up.

Comments
  • 1
    Aren't you supposed to use them in JavaScript as well? Would make your code easier to read.
    In visual studio you should get instant warnings or errors. You better not ignore those.
  • 0
    @FunkDelegate not after ES6. I don’t use “;” anymore because most “new” generation programming language don’t.
    To OP just look for red squiggly lines where a “;” is missing, they are easy to spot.
Add Comment