Skip to content

Commit 9d19a22

Browse files
bkoelmanmapfel
authored andcommitted
Added casing for local functions & tuple elements. (dennisdoomen#115)
1 parent 54515b7 commit 9d19a22

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Src/Guidelines/1700_NamingGuidelines.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ Constant Local variable | Camel | `maximumItems` |
2929
Read-only static field | Pascal | `RedValue` |
3030
Local Variable | Camel | `listOfValues` |
3131
Method | Pascal | `ToString` |
32+
Local function | Pascal | `FormatText` |
3233
Namespace | Pascal | `System.Drawing` |
3334
Parameter | Camel | `typeName` |
3435
Type Parameter | Pascal | `TView` |
3536
Property | Pascal | `BackColor` |
37+
Tuple element | Camel | `firstName` |
3638

3739
### <a name="av1704"></a> Don't include numbers in variables, parameters and type members (AV1704) ![](images/3.png)
3840
In most cases they are a lazy excuse for not defining a clear and intention-revealing name.

0 commit comments

Comments
 (0)