From 94cdcdce3a0bb71796d0059dc7929ef3f2294d91 Mon Sep 17 00:00:00 2001 From: ChapAl94 <76969213+ChapAl94@users.noreply.github.com> Date: Wed, 26 Oct 2022 21:45:55 -0400 Subject: [PATCH] Update CONTRIBUTING.md I was thinking to add a link to a C# coding convention so those who plan to convert C++ code to C# code can follow. --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 93e24ce2..c9e5afca 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -63,6 +63,8 @@ components, prefer the patterns described in the [C++ core guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) and the [modern C++/WinRT language projections](https://docs.microsoft.com/en-us/windows/uwp/cpp-and-winrt-apis/). +For C# coding standards you can follow the coding styles and guidelines in [C# coding conventions](https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/coding-conventions) + ### Testing Your change should include tests to verify new functionality wherever possible. Code should be structured so that it can be unit tested independently of the UI. [Manual test cases](docs/ManualTests.md)