mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-17 18:40:33 +00:00
removing point about empty class bodies (#2225)
* VisualStudio and VisualStudioCode with c# extension automatically add space between { } * Formatting tools automatically add space between { } so the option is to have no automatic formatting or use { } * There does not seem to be an editorconfig setting to override this behaviour
This commit is contained in:
parent
2d73dadd72
commit
5a05bdc1d0
@ -148,6 +148,5 @@ Unlike Python, C# has different ways to do the same thing, which causes endless
|
||||
* **type** vs. **var**: always use 'int x' instead of 'var x'. Less guess work. Less magic. If we **always** use the proper type then we have to waste no brain cycles on unnecessary decision making.
|
||||
* **if** vs. **switch**: any if statement could be converted to switch and back. Again, let's not have endless discussions and use if unless _switch_ makes overwhelmingly much sense. Python doesn't have switch either, they don't have those discussions and pull requests over there.
|
||||
* **int** vs. **Int32**: use int instead of Int32, double instead of Double, string instead of String and so on. We won't convert all ints to Int32, so it makes most sense to never use Int32 anywhere and avoid time wasting discussions.
|
||||
* **Empty Class Bodies ({} vs. { })**: please use 'class MyMessage : EmptyMessage {}' instead of 'class MyMessage : EmptyMessage { }'. For the same reason that we use no white space inbetween parameterless function defintions like void Start() vs. void Start( ).
|
||||
|
||||
Thanks.
|
||||
|
Loading…
Reference in New Issue
Block a user