From e293f8f2fa821598b3fc60db32ff9105851dd4b1 Mon Sep 17 00:00:00 2001 From: Bart Koelman Date: Sun, 22 Oct 2017 16:17:35 +0200 Subject: [PATCH] Added casing for local functions & tuple elements. (#115) --- Src/Guidelines/1700_NamingGuidelines.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Src/Guidelines/1700_NamingGuidelines.md b/Src/Guidelines/1700_NamingGuidelines.md index a3f37b0..1aab1df 100644 --- a/Src/Guidelines/1700_NamingGuidelines.md +++ b/Src/Guidelines/1700_NamingGuidelines.md @@ -29,10 +29,12 @@ Constant Local variable | Camel | `maximumItems` | Read-only static field | Pascal | `RedValue` | Local Variable | Camel | `listOfValues` | Method | Pascal | `ToString` | +Local function | Pascal | `FormatText` | Namespace | Pascal | `System.Drawing` | Parameter | Camel | `typeName` | Type Parameter | Pascal | `TView` | Property | Pascal | `BackColor` | +Tuple element | Camel | `firstName` | ### Don't include numbers in variables, parameters and type members (AV1704) ![](images/3.png) In most cases they are a lazy excuse for not defining a clear and intention-revealing name.