+ 1
";" and ":" in C#
is there a trick to know when to put ";", when to put ":" and when to put nothing?
1 Resposta
+ 3
; = end of the command
: = needs ? before (ternary operator)
question ? True : False
is there a trick to know when to put ";", when to put ":" and when to put nothing?