Social event administration system
- sln: force unix line endings
- readme: add coding style example
- samples/sql: added a sql sample
- tests/gui.test: fix test
- lib/gui: add new widget
- tab
- camelCase: private,local
- PascalCase: public,protected,internal
For method definitions longer than 80 characters the arguments should be divided to one argument per line.
namespace Example
{
public class ExampleClass
{
public int ExamplePublic { set; get; }
private int examplePrivate { set; get; }
public ExampleClass(int argOne,
int argTwo,
int argThree,
int argFour,
int argFive)
{
var localVar = argOne;
}
}
}