gpt4 book ai didi

c# - 在没有 Visual Studio 的情况下添加引用

转载 作者:太空狗 更新时间:2023-10-29 17:39:40 25 4
gpt4 key购买 nike

我正在尝试学习 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
}
}
}

最佳答案

编译时,使用 /r switch :

csc Program.cs /r:Log4Net.dll

关于c# - 在没有 Visual Studio 的情况下添加引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3930718/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com