2014年2月13日

[转载]C#图片格式(JPG,BMP,PNG,GIF)等转换为ICO图标

摘要: using System;using System.Drawing;using System.Windows.Forms;using System.IO;namespace ICOTest{ public partial class Form1 : Form { string FileName = "C:\\"; public Form1() { InitializeComponent(); } //核心代码 private void button1_Click(object ... 阅读全文

posted @ 2014-02-13 21:40 iackjee 阅读(809) 评论(0) 推荐(0) 编辑

[转载]C#字符串加密和解密

摘要: using System.Security.Cryptography;using System.IO;//默认密钥向量 private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; /// /// DES加密字符串 /// /// 待加密的字符串 /// 加密密钥,要求为8位 /// 加密成功返回加密后的字符串,失败返回源串 public static string Encryp... 阅读全文

posted @ 2014-02-13 17:51 iackjee 阅读(201) 评论(0) 推荐(0) 编辑

导航