After calling System.Drawing.Icon.ToBitmap() to create an image, is it safe to dispose the original Icon?
| ||||
|
feedback
|
|
Yes. Icon.ToBitmap draws the Icon to a new Bitmap object so it is safe to dispose it afterwards. Edit: | ||||
|
feedback
|
|
The method converts an So yes, it is safe to dispose the | |||
|
feedback
|
|
Yes. If you don't need the icon any more, and have the bitmap stored somewhere, you're fine. | |||
|
feedback
|