我正在尝试使用log4net的.net 4.0和v1.2.11在我的C#项目中以编程方式设置我的log4net.config文件的位置,就像定义here一样。它看起来很直接,但每当我尝试使用XmlConfigurator.Configure methid时,我都会收到以下错误:
错误4 “log4net.Config.XmlConfigurator.Configure(log4net.Repository.ILoggerRepository, System.IO.Stream)'是'方法',但用作'类型'
这是导致问题的代码行:
XmlConfigurator.Configure(new System.IO.FileInfo(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location) + @"\LocatorConfig.xml"));
任何有关此的帮助将不胜感激。 安托