摘要: 微软发布的免费软件ILmerge可以完成这项工作,研究了一下,其用法如下:1、合并file1.dll、file2.dll到destination.dllILmerge /ndebug /target:dll /out:C:/destination.dll /log C:/file1.dll C:/file2.dll 2、合并file1.dll、file2.dll以及myApp.exe到newApp.exeILmerge /ndebug /target:winexe /out:C:/newApp.exe /log C:/myapp.exe C:/file1.dll C:/file2.dll 注意 阅读全文
posted @ 2011-02-18 18:25 likunran 阅读(196) 评论(0) 推荐(0) 编辑
摘要: ——————————————————————————MD5加密方式————————————————————————————-—//tostring中的参数标示用何种格式来格式化字符串,其中X标示16进制,2表示两位 // string str1=byte.ToString("x");//str1="0"; // string str2=byte.ToString("x2");//str2="00"; public static string GetMD5Encording(string str) { MD5 md5 阅读全文
posted @ 2011-02-18 17:40 likunran 阅读(369) 评论(0) 推荐(0) 编辑