// Write the remaining buffer.
bw.Write(outbyte, 0, (int)retval - 1);
In this line I can not understand why use "(int)retval - 1" here, but not "(not)retval", could anybody give me a hint? thanks.
bw.Write(outbyte, 0, (int)retval - 1);
In this line I can not understand why use "(int)retval - 1" here, but not "(not)retval", could anybody give me a hint? thanks.