Useless Functions, Extreme Naming, and More
by in Coded Smorgasbord on 2011-10-31"We had a programmer in our company whose specialty was to write functions that embodied his own personal traits," Winston Muller, writes "do absolutely nothing and mislead everyone to think that something was done."
/// <summary> /// Log the user off the system. The method returns true or false for success or failure /// </summary> public bool Logoff(string strUser) { return true; }