I was able to find the solution, I hope its helpful for other developers.
Source: http://csharponphone.blogspot.com/2007/10/image-download-in-net-cf.html
Code Snippet
//Download Image
Uri uri = new Uri("http://maps.google.com/staticmap?center=45.728220,4.830321&zoom=8&size=200x200&maptype=roadmap&key=ABQIAAAAaHAby4XeLCIadFkAUW4vmRSkJGe9mG57rOapogjk9M-sm4TzXxR2I7bi2Qkj-opZe16CdmDs7_dNrQ");
HttpWebRequest httpRequest = (HttpWebRequest)HttpWebRequest.Create(uri);
HttpWebResponse httpResponse = (HttpWebResponse)httpRequest.GetResponse();
Stream imageStream = httpResponse.GetResponseStream();
Bitmap buddyIcon = new Bitmap(imageStream);
httpResponse.Close();
imageStream.Close();
//Load Image
pictureBox1.Image = buddyIcon;
Source: http://csharponphone.blogspot.com/2007/10/image-download-in-net-cf.html