我正在尝试学习log4Net,但是,我的PC中没有安装Visual Studio(由于缺少管理权限)。所以,我正在试用我的代码,将它们写在Windows XP的旧记事本中。在这里,如果我想添加对log4net.dll的引用,我该怎么办?
抱歉.NET天真。我刚刚学习!
例如,这是我尝试执行的示例代码。教程可用here。
using System;
namespace Tutorial1_GettingStarted
{
class Program
{
static void Main( string[] args )
{
log4net.Config.BasicConfigurator.Configure();
log4net.ILog log = log4net.LogManager.GetLogger( typeof( Program ) );
log.Debug( "Hello World!" );
log.Info( "I'm a simple log4net tutorial." );
log.Warn( "... better be careful ..." );
log.Error( "ruh-roh: an error occurred" );
log.Fatal( "OMG we're dooooooomed!" );
Console.ReadLine(); // so you can read the output
}
}
}