- Follow the code style
if (...)
{
}
if (...)
return;
try
{
}
catch (...)
{
}
for (int i = 0; i<=1; i++)
{
}
foreach (Type variable in new Type())
{
}
foreach (var variable in new Dictionary<string, string>().keys)
{
}
while (...)
{
}
using (...)
{
}
private int _name;
public int Name;
public int Name { get; private set; }
Only use var when using foreach with a dictionary's key or value sets.
public void Example(int argName)
{
}
~bit
~(bit ^ 0xFF)
((bit & 0xFF) | 0xFF) >> 0xFF
- Push changes to a new local branch to the 'dev' branch. ('contributor-feature' -> 'dev')
- You are encouraged to start a PR early so we can spy on what you are working on! How to do that
- Versions should not be bumped at all
- gitignore is free game add anything that fits
- Do not use #region
- Tabs only. Spaces will not be accepted.