摘要:
在拼接路径的时候建议使用系统提供的Path.Combine函数 string aa = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; if (Directory.Exists(aa + "/Pic") == fals 阅读全文
摘要:
先上一个准备代码:image和字节数组相互转换: //字节数组转image //pic是字节数组 System.IO.MemoryStream ms = new System.IO.MemoryStream(pic); System.Drawing.Image image = System.Draw 阅读全文