The code style is enforced by a .editorconfig file, inside src/
Notably, code blocks should be opened Java style:
if(blabla) {
}
NOT C# style:
if (blabla)
{
}
Also, namespaces must be file-scoped:
namespace Spice86.Core.Emulator.blabla;
The code style is enforced by a .editorconfig file, inside src/
Notably, code blocks should be opened Java style:
if(blabla) {
}
NOT C# style:
if (blabla)
{
}
Also, namespaces must be file-scoped:
namespace Spice86.Core.Emulator.blabla;