摘要: 安装quartz包版本2.6.1 1 public class TimingJob : IJob 2 { 3 public void Execute(IJobExecutionContext context) 4 { 5 //将要定时执行的逻辑代码写于此处 6 systemState = false 阅读全文
posted @ 2019-07-10 18:21 Tiye529 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 软件地址:https://archive.codeplex.com/?p=confuser GitHub地址:https://github.com/yck1509/ConfuserEx/releases 加密前使用reflector查看 软件界面: 直接将exe可执行文件拖拉进去→Protext 生 阅读全文
posted @ 2019-07-10 16:30 Tiye529 阅读(2001) 评论(0) 推荐(0) 编辑
摘要: 1 public static class TimeHelper 2 { 3 // 小端存储与大端存储的转换 4 private static uint swapEndian(ulong x) 5 { 6 return (uint)(((x & 0x000000ff) << 24) + 7 ((x 阅读全文
posted @ 2019-07-10 10:47 Tiye529 阅读(993) 评论(0) 推荐(0) 编辑
摘要: 1 private static readonly Encoding Encoder = Encoding.UTF8; 2 3 public static String Encrypt(this String plaintext) 4 { 5 X509Certificate2 _X509Certif 阅读全文
posted @ 2019-07-10 10:46 Tiye529 阅读(2213) 评论(1) 推荐(0) 编辑