示例#1
0
        protected FileLoggerOptions(FileLoggerOptions other) : base(other)
        {
            FileAppender = other.FileAppender;
            BasePath     = other.BasePath;

            if (other.Files != null)
            {
                Files = other.Files.Select(file => new LogFileOptions(file)).ToArray();
            }
        }
 protected FileLoggerOptions(FileLoggerOptions other) : base(other)
 {
 }