/// <summary> /// Initializes a new instance of the <see cref="LogFactory" /> class. /// </summary> public LogFactory() { #if !SILVERLIGHT this.watcher = new MultiFileWatcher(); this.watcher.OnChange += this.ConfigFileChanged; #endif }
/// <summary> /// Creates a new instance of <see cref="LogFactory"/> /// </summary> public LogFactory() { #if !NETCF _watcher = new MultiFileWatcher(new EventHandler(ConfigFileChanged)); #endif }
/// <summary> /// Initializes a new instance of the <see cref="LogFactory" /> class. /// </summary> public LogFactory() { _watcher = new MultiFileWatcher(); _watcher.OnChange += ConfigFileChanged; }