摘要:
先看示例代码片段:1.读取文件:FileStream的用法System.IO.FileStream fs = new FileStream("Test.txt", FileMode.OpenOrCreate,FileAccess.Read); char[] cs = new char[fs.Length]; byte[] bs = new byte[fs.Length]; fs.Read(bs,0... 阅读全文
posted @ 2007-12-10 21:15
changchang
阅读(3484)
评论(0)
推荐(1)
2007年12月10日