I'm making a project that will scrap information about a movie and return all sorts of goodies. This will be a .dll that other developers will use in their projects.
For example, if they want to set a pictureBox image to the movies poster, what would be the best way to handle my library returning the image?
//Set the image to The Matrix poster.
pictureBox1.Image = MyLibrary.GetPoster("The Matrix");
Should开发者_Go百科 I return an Image? A Byte[] array?
I would say return a System.Drawing.Image.
Return an image.
I think returning System.Drawing.Bitmap makes it easy to use
精彩评论