What does the following warning in Code Contracts for Net 4.0 mean and how to fix it???
CodeContracts: requires unproven: (image.PixelFormat & PixelFormat.Indexed) == 0
I'm doing either: var bmp = new Bitmap(pSize.Width, pSize.Height, System.Drawing.Imaging.PixelFormat.Indexed)
or var g = Graphics.FromImage(this._otherBitmap)
As an aside: There are some questions on SO about how mature code contracts is and if you will use them and if they still exist, but they are 2009 to 2011. 2013 now... What do you think???
Thanks in advance