Adf.Base.Logging.FlatFileLogProvider.GetDateForMessage C# (CSharp) 메소드

GetDateForMessage() 개인적인 정적인 메소드

Provides a string having current date in a format yyyy-MM-dd HH:mm:ss. Use the current date time for writing message in log file.
private static GetDateForMessage ( ) : string
리턴 string
        private static string GetDateForMessage()
        {
            return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);
        }