Which if
statement is faster, with the following conditions. It seems the short-circuit will compile into more instructions then the non-short-circuit.
bool force = false;
bool _isLoadingActual = true;
bool _isLoadingLoadCore = true;
int a = 0, b = 0;
if (force | !(_isLoadingActual | _isLoadingLoadCore))
{
a = 1;
}
if (force || !(_isLoadingActual || _isLoadingLoadCore))
{
b = 1;
}