Example #1
0
 public void Analyze(string fileName)
 {
     if (fileName.Length < 8)
     {
         LoggingFacility.Log("Filename too short: " + fileName);
     }
     // rest of method
 }
 public bool IsConfigured(string configName)
 {
     LoggingFacility.Log("checking " + configName);
     return(result);
 }