摘要: var url = patt1.exec(location.href); if (navigator.userAgent.toLowerCase().indexOf("micromessenger") > -1) { window.location.href = "http://www.360doc 阅读全文
posted @ 2020-06-26 13:04 netlock 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 使用场景 通常开发的Winform程序,引用了其他类库后,在输出目录下都会产生很多DLL文件,exe执行时必须依赖这些DLL。想要Winform程序只有一个可执行exe文件,又不想打包成安装包,就可以采用该方法。 方案一 利用ILMerge将exe及dll合并成一个新的exe ILMerge下载地址 阅读全文
posted @ 2020-06-26 13:03 netlock 阅读(3836) 评论(0) 推荐(3) 编辑
摘要: DotfuscatorPro_4.9可以防止你的.NET软件被反编译,可以在一定程度上防止你的软件被反编译。现在很多软件都有被反编译的现象,虽然不能做到百分百的防范,但是你至少可以先做些技术上的处理,至少能挡住许多小白。 打开DotfuscatorPro软件,如图所示,点击ok 点击这个文件夹图标, 阅读全文
posted @ 2020-06-26 12:47 netlock 阅读(681) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; using SevenZip; using System.IO; using System.Windows.Forms; namespace TestZip { in 阅读全文
posted @ 2020-06-26 12:36 netlock 阅读(3171) 评论(0) 推荐(1) 编辑