I'll explain what I want to do: let's take this picture as example. I want to download this picture and open it in my application, using Picture Box. I think I'll need to use
Bitmap bitmap = new Bitmap(xxxx);
and what should I put at "xxxx" place? Script I saw was written in Delphi an looked like this:
Value := copys (searchPage, '<link rel="image_src" href="', '">');
GetPicture (Value);
Any advice?