Please stop coding like this. It hurts my eyes. 62 /// <summary>Check whether any Foobar is available</summary> 63 /// <returns>True / False based on if Foobar is there or not</returns> 64 private bool CheckForFoobar() 65 { 66 if (FoobarHelper.CheckForFoobar() == true) 67 { 68 return true; 69 } 70 else 71 { 72 return false; 73 } 74 } ......