CSharpCodingStandard
CSharpCodingStandard copied to clipboard
This is the Standard for C# Programming language
I know this might not be the best place since the repo says C# Coding Standard. But, I am putting it here for documentations purposes: > All styles get collected...
Instead of: ```csharp this.someExternalLibrary.PtrShit(); ``` Use: ```csharp public void OneLinerMethodThatReallySaysWhatItDoes() => this.someExternalLibrary.PtrShit(); ```
Hi Hassan Habeeb, Do you have any sonar cube configuration for this standards? If have could you please provide in the repo or send me a mail? [email protected] I raised...
Should constant variable names have a different case? For example, `const string FirstName = "John";` vs `const string firstName = "John";`
Hi. Thank you for CSharpCodingStandard. Should there be documentation about the standard naming convention for abbreviations, and its reasoning? For example, `IOpenAiBroker` vs `IOpenAIBroker` (notice the capital `i`). Another example:...
Need the standard specification for commenting on the Methods/Properties.
Under Naming, on line 4, the word "percise" should be "precise". Am on mobile and I couldn't work out how to try fix it myself instead, apologies for that.
This would be easier to user and maintain has a single page.
In the Don't example of a lambda expression under the Names section of the Variable page; studetns.Where(s => s ... ); should be: students.Where(s => s ... );
In the overall document this is section 2 however, all sections in this document are labeled has section 4.