Description
The Bitmap is derived from Image so you can use Icon’s .ToBitmap() method.
Sample
Icon IEIcon = Icon.ExtractAssociatedIcon(@"C:\Program Files\Internet Explorer\iexplore.exe");
Image im = IEIcon.ToBitmap();
More Information
- MSDN – Bitmap Class
- MSDN – Image Class