Hi,
don't you know, if there is any oppotunity to make this task true? I'd like to draw the feature from the map in the pictureBox control. I try:
byte[] wellKnownBinary = feature.GetWellKnownBinary();
MemoryStream ms = new MemoryStream(wellKnownBinary);
Bitmap bitmap = new Bitmap(ms); // argument not valid
pictureBox1.Image = bitmap;
Thank you.