1
Answer

What does * mean?

Irene Tan

Irene Tan

16y
2.9k
1

Came across this codes... have no idea what does the * mean... any idea??

Example1: byte * ptr = (byte *) imageData.Scan0.ToPointer( );

                   byte * ovr = (byte *) ovrData.Scan0.ToPointer( );

 

Example2: v = (int) *ptr + (int) *ovr;

                   *ptr = ( v > 255 ) ? (byte) 255 : (byte) v;

Answers (1)