You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: C#.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -257,6 +257,10 @@ Try to limit line length. This limit can be arbitrary (e.g. 80 or 100 characters
257
257
258
258
Try to limit the length of method and code blocks by 50 lines so that they are not trying to do too much. Shorter methods are easier to test, and smaller sections of code are more quickly comprehended by developers.
259
259
260
+
**Never use Extension Methods**
261
+
262
+
All the additional logic that is necessary is implemented through utility classes
263
+
260
264
**Brackets and blocks**
261
265
262
266
Open braces should always be at the beginning of the line after the statement that begins the block.
0 commit comments