But how could you live and have no story to tell!
访问统计 original graphics

摘要: //给数组赋值,这里用的是通过WebService返回的二进制数组 byte[] img = MyService.GetImg(textBox1.Text); MemoryStream ms = new MemoryStream(img); Bitmap bt = new Bitmap(ms); pictureBox1.Image = Image.FromHbitmap(bt.GetHbitmap... 阅读全文
posted @ 2007-11-26 19:13 nextsoft 阅读(347) 评论(0) 推荐(1) 编辑
摘要: [文章来源:csdn.net] Author: sendreams byte[] byteArray = System.Text.Encoding.Default.GetBytes( str ); 反过来也是一样,把byte[]转成string: string str = System.Text.Encoding.Default.GetString( byteArray ); 其实,在S... 阅读全文
posted @ 2007-11-26 18:59 nextsoft 阅读(202) 评论(0) 推荐(0) 编辑