If Peter Moberg were to give a single criticism of his colleague's work, it would be that it represents a complete and total misunderstanding of the principles of software development.
Criticisms #2 and #3 would probably center around typos/misspellings and completely superfluous code. Today's example illustrates all three.
public bool IsListconntSmalleThaOne(IList<IContact> listOfResults) {
if (listOfResults.Count >= 1)
{
return false;
}
else
{
return true;
}
}