C#
文章平均质量分 71
wskyo
这个作者很懒,什么都没留下…
展开
-
16进制字符串转字符
/// /// 16进制转字符 /// /// /// public string HexToStr(string str1) { string returnValue = ""; if(str1=="") return ""; byte[] w = new byte[str1.Length/2]; for(int i = 0;i {原创 2004-10-21 09:26:00 · 2019 阅读 · 0 评论 -
MD5加密解密
using System;using System.Text;using System.IO;using System.Security.Cryptography;class Class1{ static void Main() { Console.WriteLine("Encrypt String..."); txtKey = "tkGGRmBErvc=";//设置加密Key btnK原创 2004-10-21 09:31:00 · 2487 阅读 · 1 评论 -
字符串转为16进制
string StrToHex(string str){ string strTemp = ""; if(str="") return ""; byte[] bTemp = System.Text.Encoding.Default.GetBytes(str); for(int i = 0;i { strTemp += bTemp原创 2004-10-19 10:41:00 · 1567 阅读 · 1 评论 -
拖放 DataGrid 列
摘自msdn下载 ColumnDragDataGrid.msi 文件。本页内容简介入门ScreenImage 类DraggedDataGridColumn 类ColumnDragDataGrid 类列跟踪重写 DataGrid 的 OnPaint 方法小结简介几个月以前,当我初到 M转载 2004-10-20 09:33:00 · 759 阅读 · 0 评论