Log4net Dll用法

在导入Log4net的过程中,遇到一两个小bug。

  1. 开发平台必须是NET4 而不能是net4 client profile
  2. Log4Helper 里面的Namespace要和我们建立项目的名称一致。
  3. 里面有一个typeof(xxx) 写明为xxx:form1 .

?

导出到DLL:

参考资料: http://blog.csdn.net/xiaowei_cqu/article/details/7737682

?

主要就是几个方面:

不用加上 extern "C",这样的话,导出的就是C++可以使用的。不然C里面有些缺少库,不能使用。

全局变量也是可以封装的。这个需要注意一下。

?

为图表添加题注,这样可以一劳永逸。

参考资料:http://jingyan.baidu.com/article/fec4bce2255063f2618d8bd3.html

最好是添加样式,图对应一个题注,表对应一个题注。

审阅模式:

视图模式:

时间: 2024-10-11 17:09:44

Log4net Dll用法的相关文章

log4net.dll添加报错

描述: 新建项目Log4Net类库项目,添加log4net.dll,封装Log类对日志进行操作 新建webForm项目添加Log4Net类库生成的dll生成日志,页面报错,未能加载文件或程序集log4net,找到的程序集清单定义与程序集引用不匹配 找错:使用NuGet查找最新的log4net.dll稳定版本,2.0.8,添加之后还是报错,各种版本试了一遍,webform项目的framework版本是4.5,log4net.dll的版本也选的4.5 继续查找错误,检查[assembly: log4

WPF使用Log4net.dll库的demo(转载加个人观点)

原文地址:http://blog.csdn.net/linraise/article/details/50547149 配置文件解析地址:http://blog.csdn.net/pfe_nova/article/details/12225349 1.引入库log4net.dll 2.在AssemblyInfo.cs中添加一行:在AssemblyInfo.cs中添加一行:(其中log4net.config对应配置文件名) [assembly: log4net.Config.XmlConfigur

NPOI.dll 用法。单元格,样式,字体,颜色,行高,宽度。读写excel

1.25 NPOI.dll using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; using NPOI.HSSF.UserMod

NPOI.dll 用法:单元格、样式、字体、颜色、行高、宽度 读写excel

1.25 NPOI.dll using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; using NPOI.HSSF.UserMod

转载 NPOI.dll 用法。单元格,样式,字体,颜色,行高,宽度。读写excel

我用的版本是1.25的.每个版本用法有一点不同 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; using NPOI.HS

IrisSkin2.dll用法总结——WinForm窗体换肤总结

今天使用IrisSkin2.dll来对WinForm窗体换肤,遇到了很多问题. 我是直接用VS2010建的一个工程然后引用该dll文件,结果调试的时候出现了错误,错误信息如下: 错误 1 未能找到类型或命名空间名称"Sunisoft"(是否缺少 using 指令或程序集引用?) 后来看了别人写的一个软件发现这个IrisSkin2.dll不支持.NET Framework 3.5 Client Profile和.NET Framework 4和.NET Framework 4 Clien

引用日志log4net.dll的web.config配置

<configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> </configSections> <configSections> <section name="log4net" type="log4net.Config.Log

Log4net在类库中的用法

app.config应当放置在解决方案的根目录下.具体流程如下: 第一步:应该下载log4net.dll并引入到你的项目中,下载见附件 第二步:需要配置相关的配置文件App.config或Web.config,顾名思义普通应用的配置文件 为App.config,asp.net的配置文件为Web.config.有关log的配置如下: <configuration>   <configSections>       <!-- log4net的定义 -->         &

Log4net用法(.config文件)

1.引用log4net.dll 2.在AssemblyInfo.cs中添加初始化: [assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", Watch = true)] 3.添加配置文件,内容如下: <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSe