- Learning C# by Developing Games with Unity 5.x(Second Edition)
- Greg Lukosek
- 183字
- 2021-07-09 20:03:34
Writing C# statements properly
When you do normal writing, it's in the form of a sentence, with a period used to end the sentence. When you write a line of code, it's called a statement, with a semicolon used to end the statement.
Note
The reason a statement ends with a semicolon is so that Unity knows when the statement ends. A period can't be used because it is used in the dot syntax.
The code for a C# statement does not have to be on a single line as shown in the following example:
public int number1 = 2;
The statement can be on several lines. Whitespace and carriage returns are ignored, so, if you really want to, you can write it as follows:
public int number1 = 2;
However, I do not recommend writing your code like this because it's terrible to read code that is formatted like the preceding code. Nevertheless, there will be times when you'll have to write long statements—longer than one line. Unity won't care. It just needs to see the semicolon at the end.
- DB2 V9權(quán)威指南
- Designing Machine Learning Systems with Python
- Mobile Web Performance Optimization
- Drupal 8 Blueprints
- 高效微控制器C語言編程
- Python 深度學(xué)習(xí)
- Mastering Julia
- Access 2010數(shù)據(jù)庫基礎(chǔ)與應(yīng)用項(xiàng)目式教程(第3版)
- Python編程完全入門教程
- iOS開發(fā)實(shí)戰(zhàn):從入門到上架App Store(第2版) (移動(dòng)開發(fā)叢書)
- Learning Image Processing with OpenCV
- Python應(yīng)用與實(shí)戰(zhàn)
- UI動(dòng)效設(shè)計(jì)從入門到精通
- Ajax與jQuery程序設(shè)計(jì)
- 微軟辦公軟件認(rèn)證考試MOS Access 2013實(shí)訓(xùn)教程