摘要: /// /// 通过FileStream 来打开文件,这样就可以实现不锁定Image文件,到时可以让多用户同时访问Image文件 /// /// /// public static Bitmap ReadImageFile(string path) { FileStream fs = File.OpenRead(path); //OpenRead int filelength = 0; filelength = (int)... 阅读全文
posted @ 2013-08-13 10:17 louiskoo 阅读(55499) 评论(0) 推荐(1) 编辑