typeof(_Default) 使用 Log4Net 时出错
typeof(_Default) Error using Log4Net
我正在做一个 C# MVC 项目,我需要一些听觉,所以我在项目上安装了 Log4net,并按照这里的教程
http://kaizen-force.com/2015/03/24/log4net-c-visual-studio-2013/
当我使用这行代码时
private static readonly ILog log = LogManager.GetLogger(typeof(_Default));
我收到这个错误
Error 2 The type or namespace name '_Default' could not be found (are you missing a using directive or an assembly reference?) D:\PC\Visual Studio 2013\Projects\SSMS-2.0.1\SSMS-2.0.1\Controllers\UsuariosXesController.cs 20 72 SSMS_2._0._1
我错过了什么吗?我怎样才能完成这项工作?
You'll note 在教程中他创建了一个名为 _Default
的 class,并且此 log
字段是 class 中的静态字段。如果您有不同名称的 class,则需要更改 typeof()
.
中的名称
private static readonly ILog log = LogManager.GetLogger(typeof(UsuariosXesController));
我正在做一个 C# MVC 项目,我需要一些听觉,所以我在项目上安装了 Log4net,并按照这里的教程
http://kaizen-force.com/2015/03/24/log4net-c-visual-studio-2013/
当我使用这行代码时
private static readonly ILog log = LogManager.GetLogger(typeof(_Default));
我收到这个错误
Error 2 The type or namespace name '_Default' could not be found (are you missing a using directive or an assembly reference?) D:\PC\Visual Studio 2013\Projects\SSMS-2.0.1\SSMS-2.0.1\Controllers\UsuariosXesController.cs 20 72 SSMS_2._0._1
我错过了什么吗?我怎样才能完成这项工作?
You'll note 在教程中他创建了一个名为 _Default
的 class,并且此 log
字段是 class 中的静态字段。如果您有不同名称的 class,则需要更改 typeof()
.
private static readonly ILog log = LogManager.GetLogger(typeof(UsuariosXesController));