Eu prefiro a Opção A
bool a, b, c;
if( a && b && c )
{
//This is neat & readable
}
Se você tiver variáveis / condições de método particularmente longas, você pode simplesmente quebrá-las
if( VeryLongConditionMethod(a) &&
VeryLongConditionMethod(b) &&
VeryLongConditionMethod(c))
{
//This is still readable
}
Se eles forem ainda mais complicados, então eu consideraria fazer os métodos de condição separadamente fora da instrução 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 ;)
}
IMHO A única razão para a opção 'B' seria se você tivesse else
funções separadas para executar para cada condição.
por exemplo
if( a )
{
if( b )
{
}
else
{
//Do Something Else B
}
}
else
{
//Do Something Else A
}