From d70a902c89407c4d73c857c7d20bc1fefb02a89d Mon Sep 17 00:00:00 2001 From: Stone-Red-Code <56473591+Stone-Red-Code@users.noreply.github.com> Date: Fri, 9 Jul 2021 18:40:26 +0200 Subject: [PATCH] Fixed headings order --- src/content/resources/language/c-sharp/coding-conventions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/resources/language/c-sharp/coding-conventions.md b/src/content/resources/language/c-sharp/coding-conventions.md index aa0f2f6..c17a8e0 100644 --- a/src/content/resources/language/c-sharp/coding-conventions.md +++ b/src/content/resources/language/c-sharp/coding-conventions.md @@ -8,8 +8,6 @@ external_resources: href: "https://docs.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/coding-conventions" --- -## Naming conventions - Coding conventions serve the following purposes: - They create a consistent look to the code, so that readers can focus on content, not layout. @@ -17,6 +15,8 @@ Coding conventions serve the following purposes: - They facilitate copying, changing, and maintaining the code. - They demonstrate C# best practices. +## Naming conventions + ### Pascal case Use pascal casing ("PascalCasing") when naming a class, record, interface or struct.