Your way of doing things is now how things must be done. Extra points for petty and minor stuff.

  • @blackstratA
    link
    -17 hours ago

    I’m not with indenting paragraphs. And functions should be PascalCase with braces on new lines. Long parameter lists are indented as below and parameters and other variables are camelCase.

    public int MyFunction(int paramOne,
                                             int paramTwo)
    {
        return paramOne + paramTwo;
    }
    

    Otherwise a good list