Prefiero la opción A
bool a, b, c;
if( a && b && c )
{
//This is neat & readable
}
Si tiene variables / condiciones de método particularmente largas, puede simplemente saltar de línea
if( VeryLongConditionMethod(a) &&
VeryLongConditionMethod(b) &&
VeryLongConditionMethod(c))
{
//This is still readable
}
Si son aún más complicados, entonces consideraría hacer los métodos de condición por separado fuera de la declaración if
bool aa = FirstVeryLongConditionMethod(a) && SecondVeryLongConditionMethod(a);
bool bb = FirstVeryLongConditionMethod(b) && SecondVeryLongConditionMethod(b);
bool cc = FirstVeryLongConditionMethod(c) && SecondVeryLongConditionMethod(c);
if( aa && bb && cc)
{
//This is again neat & readable
//although you probably need to sanity check your method names ;)
}
En mi humilde opinión, la única razón para la opción 'B' sería si tiene else
funciones separadas para ejecutar para cada condición.
p.ej
if( a )
{
if( b )
{
}
else
{
//Do Something Else B
}
}
else
{
//Do Something Else A
}