Catel.LogAnalyzer.Helpers.FileHelper.Exists C# (CSharp) Метод

Exists() публичный статический Метод

public static Exists ( string fileName ) : bool
fileName string
Результат bool
        public static bool Exists(string fileName)
        {
            Argument.IsNotNullOrWhitespace(() => fileName);

            return File.Exists(fileName);
        }
        #endregion