|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Icon.ToBitmap() bug for .net 2.0namespace DotNetIconBug { public class DotNetIconBug { static void Main() { //bug for icon with width > height && color < 32bit on winxp sp2 with .net 2.0 //here: 12x7.ico a icon (width = 12, height = 7, color: 24 bit) System.Drawing.Icon icon = new System.Drawing.Icon("12x7.ico"); icon.ToBitmap(); //-->AccessViolationException } } } Any Ideas??? |
|||||||||||||||||||||||