4
Answers

Unsafe code may only appear if compiling with /unsafe?

public static bool Brighten(Bitmap b, int nBrightness) { //variables declarations unsafe //error line!! { ....using pointers } }

Answers (4)