From f254fefffb7b38d7f1581c40e1ea4ca379039e8a Mon Sep 17 00:00:00 2001 From: Youssef Raafat Date: Wed, 5 Dec 2018 04:19:42 +0200 Subject: [PATCH] Update C# Coding Standards and Naming Conventions.md --- C# Coding Standards and Naming Conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C# Coding Standards and Naming Conventions.md b/C# Coding Standards and Naming Conventions.md index 5ee1044..0d818d0 100644 --- a/C# Coding Standards and Naming Conventions.md +++ b/C# Coding Standards and Naming Conventions.md @@ -1,7 +1,7 @@ # C# Coding Standards and Naming Conventions -| SQL Server Object Name | Notation | Length | Plural | Prefix | Suffix | Abbreviation | Char Mask | Underscores | +| Object Name | Notation | Length | Plural | Prefix | Suffix | Abbreviation | Char Mask | Underscores | |:--------------------------|:-----------|-------:|:-------|:-------|:-------|:-------------|:-------------------|:------------| | Class name | PascalCase | 128 | No | No | Yes | No | [A-z][0-9] | No | | Constructor name | PascalCase | 128 | No | No | Yes | No | [A-z][0-9] | No |