public bool IsConfigured(string configName)
        {
            LoggingFacility.Log("checking " + configName);
            bool result = true;

            return(result);
        }
Пример #2
0
 public void Analyze(string fileName)
 {
     if (fileName.Length < 8)
     {
         LoggingFacility.Log("Filename too short: " + fileName);
     }
     // rest of method here
 }