C#怎么引用外部dll

 我来答
ji...1@126.com
2017-01-02 · TA获得超过105个赞
知道答主
回答量:141
采纳率:0%
帮助的人:16.8万
展开全部
一、创建dll文件:例如生成一个md5编码判断状态的文件,即,输入一个字符串(stringA)和一个32位md5编码(stringB),判断此字符串A对应的32位md5编码是否与B相等,如果相等返回true,否则返回false。打开VS2005,“文件”--》“新建”--“项目”,选择“Windows控件库”,命名后点击“确定”,在“UserControl1.cs”中输入以下代码:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Drawing;usingSystem.Data;usingSystem.Windows.Forms;usingSystem.Text;usingSystem.Security.Cryptography;namespacemd5{publicpartialclassProgram:UserControl{#regionMD532位加密:GetMd5Str32//////32位MD5加密//////待加密字串///加密后的字串publicstaticstringGetMd5Str32(stringstrSource){byte[]bytes=Encoding.ASCII.GetBytes(strSource);byte[]hashValue=((System.Security.Cryptography.HashAlgorithm)System.Security.Cryptography.CryptoConfig.CreateFromName("MD5")).ComputeHash(bytes);StringBuildersb=newStringBuilder();for(inti=0;i///核对md5编码是否一致/////////如果一致返回true,否则返回false///publicstaticboolCheckMd5String(stringstr1,stringstr2){stringmd5String=str1;//需要验证的字符串stringmd5DbString=str2;//需要核对的32位md5编码intresult=string.Compare(md5.Program.GetMd5Str32(str1),md5DbString,true);if(result==0){returntrue;}else{returnfalse;}}#endregion}}修改“UserControl1.Designer.cs”中的命名空间为“md5”,方法为“Program”,即可生成dll文件。在\bin\Debug文件假下,可以找到相应的dll文件。二、部署dll流程:首先把dll文件放到应用程序\bin\Debug\下;然后在解决方案中添加引用:右键鼠标-->添加引用-->浏览-->选择dll放置路径后点击“确定”。注意:要在应用文件头处使用usingmd5;命令。测试应用程序代码,如下:Form1.csusingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingmd5;namespaceWindowsApplication1{publicpartialclassForm1:Form{publicForm1(){InitializeComponent();}privatevoidbutton1_Click(objectsender,EventArgse){stringstr1=textBox1.Text.ToString();stringmd5String=textBox2.Text.ToString();textBox3.Text=md5.Program.GetMd5Str32(str1);textBox4.Text=md5.Program.CheckMd5String(str1,md5String).ToString();}privatevoidbutton2_Click(objectsender,EventArgse){this.Close();}}}三、注意点:1、在C#应用程序开发过程中,加载dll文件时,报错“未能加载文件或程序集“md5,Version=2.0.0.0,Culture=neutral,PublicKeyToken=null”或它的某一个依赖项。系统找不到指定的文件。”,请指点一下是什么原因?解决:这是因为加载dll的路径问题,正确加载方式为:在“解决方案”的“引用”文件上右击鼠标,选择“添加引用”---》在“浏览”选项卡中添加引用(注意:自己定义的dll文件不能在“.NET”选项卡中添加。)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式