Based on background C, I use to determine the size of the buffer as follows:
#define BUFFER_SIZE 1024
uint8_t buffer[BUFFER_SIZE];
How would you do the same in C #?
Is K & R's all-caps style also suitable with the usual C # Pascal / Camel case?
source
share