所以我试图对链接进行编码,但用用户输入的内容改变中间部分。如:
pictureBox1.Image = new System.Drawing.Bitmap(new IO.MemoryStream(new System.Net.Webclient().DownloadData("http://api.skype.com/users/" + textBox6.Text + "/profile/avatar")));
我正在制作的Skype工具,但唯一的问题是MemoryStream
。它说
'MYPROGRAMNAME.IO.MemoryStream'是'属性',但用作“类型”
我不知道出了什么问题。我找不到任何东西。
答案 0 :(得分:0)
看起来您已在项目中创建了另一个属性IO.MemoryStream。相反,您应该使用System.IO.MemoryStream
命名空间。见下面的修改。
pictureBox1.Image = new System.Drawing.Bitmap(new System.IO.MemoryStream(new System.Net.WebClient().DownloadData("http://api.skype.com/users/" + textBox6.Text + "/profile/avatar")));