Tagged Questions
8
votes
8answers
658 views
AND is better or using Internal “IF”
In a situation like this:"
if ((metadata != null) && (metadata.TypeEnum != VariantInfoMetadata.CellTypeEnum.Status))
do you recommend to keep the code as it is above? Or is it better to ...