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;
  }
}
[Advertisement] BuildMaster allows you to create a self-service release management platform that allows different teams to manage their applications. Explore how!