+ 1
Just wondering...
Why do I need a semicolon at the end of each line in C#?
1 Answer
+ 5
semicolon is a delimiter of statements in some programming languages.
it's how the compiler know where a statement ends.
Why do I need a semicolon at the end of each line in C#?