2008年9月1日

C#读文件代码

摘要: using System; using System.IO; public class TestReadFile { public static void Main(String[] args) { // 创建文件流,读取文件的路径 FileStream fs = new FileStream(@c:\temp\test.txt , Fi... 阅读全文

posted @ 2008-09-01 23:51 VictorShan 阅读(516) 评论(0) 推荐(0)

C#写文件代码

摘要: using System; using System.IO; public class TestWriteFile { public static void Main(String[] args) { // Create a text file C:\temp\test.txt FileStream fs = new FileStrea... 阅读全文

posted @ 2008-09-01 23:48 VictorShan 阅读(1542) 评论(0) 推荐(0)

c# MD5加密算法的实例

摘要: 环境:vs.net2005/sql server2000/xp测试通过 1.MD5 16位加密实例 using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; namespace md5 { class Program ... 阅读全文

posted @ 2008-09-01 23:13 VictorShan 阅读(263) 评论(0) 推荐(0)

导航