Devo usare un codice facilmente leggibile come questo
if (var.isServicePGM() || var.isStandardPGM())
{
//Much code
if (var.isServicePGM())
{
//Some code
}
else if (var.isStandardPGM())
{
//Some code
}
}
o dovrei usare un codice più veloce come questo
if (var.isServicePGM() || var.isStandardPGM())
{
//Much code
if (var.isServicePGM())
{
//Some code
}
else
{
//Some code
}
}