1 // CS0266: Cannot implicitly convert type `System.IntPtr' to `byte*'. An explicit conversion exists (are you missing a cast?)
3 // Compiler options: -unsafe
8 static void Main (string [] args
)
13 public IntPtr Pixels
{
18 public static unsafe void Bug ()
22 //byte *pix = (byte *)pixbuf.Pixels;
23 byte *pix
= pixbuf
.Pixels
;