上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 168 下一页
摘要: using System; using System.IO; using System.Security.Cryptography; using System.Text; using System.Web.Security; namespace Common.Utility { /// /// Author:Kt /// Date Created:2011-04-... 阅读全文
posted @ 2019-10-22 12:00 DarJeely 阅读(834) 评论(0) 推荐(0) 编辑
摘要: using System.Text; namespace Cipher.Algorithm { static class Caesar { static public string Encrypt(string input, int key) { StringBuilder sb = new StringBuilder(); for(int i = 0; i < input.Length; ++i 阅读全文
posted @ 2019-10-22 11:40 DarJeely 阅读(440) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.W 阅读全文
posted @ 2019-10-22 11:33 DarJeely 阅读(376) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using Syst... 阅读全文
posted @ 2019-10-22 11:26 DarJeely 阅读(375) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Text; using System.Security.Cryptography; using System.IO; using System.Security.Cryptography.X509Certificates; using System.Xml; using Org.BouncyCastle.Math; using Org.Boun 阅读全文
posted @ 2019-10-22 11:19 DarJeely 阅读(557) 评论(0) 推荐(0) 编辑
摘要: DESEncrypt.cs FrmEncrypt.cs 阅读全文
posted @ 2019-10-22 11:10 DarJeely 阅读(182) 评论(0) 推荐(0) 编辑
摘要: using Gaea.MySql; using System; using System.Data; using System.IO; using System.Security.Cryptography; using Microsoft.Extensions.DependencyInjection; using System.Text; using System.Threading; using 阅读全文
posted @ 2019-10-22 10:52 DarJeely 阅读(494) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; using System.IO; namespace Ecan.Crypt { public class EcanCryptography { /... 阅读全文
posted @ 2019-10-22 10:44 DarJeely 阅读(387) 评论(0) 推荐(0) 编辑
摘要: Aforge.net 阅读全文
posted @ 2019-10-21 11:37 DarJeely 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 我们知道只有UI线程才能更新UI界面,其他线程访问UI控件被认为是非法的。但是我们在进行异步操作时,经常需要将异步执行的进度报告给用户,让用户知道任务的进度,不至于让用户误认为程序“死掉了”,特别是对于Winform,WPF等客户端程序尤为重要。 那么我们要探讨的就是如何让非UI的任务线程更新UI界 阅读全文
posted @ 2019-10-21 11:36 DarJeely 阅读(1681) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 168 下一页