Simple Code Conventions

Most of the code conventions in BlogNET can be derived directly from the .NET code conventions so they are not listed here. For example properties use PascalCase and method parameters use camelCase. The default formatting is usually the one that Visual Studio uses when it formats automatically.
if (condintion)
{
    SinlgeLine();
}
else if (condition) // Exception – the body of else is not in block
{
    . . .
}

Roadmap for Version 2.0