vote up 3 vote down star
2

Coming from a C background I'm used to defining the size of the buffer in the following way:

#define BUFFER_SIZE 1024

uint8_t buffer[BUFFER_SIZE];

How would you do the accomplish the same thing in C#?

Also does the all-caps K&R style fit in with normal C# Pascal/Camel case?

flag

67% accept rate
I second both answers (ctacke, Megacan). – Leonidas Jan 28 at 23:55
CamelCase is just a coding convention. Nothing semantical. – Leonidas Jan 28 at 23:59
Yes, but I'm just curious if C# programmers would define constants like BUFFER_SIZE, or just write it in Pascal Case like BufferSize. – Justin Tanner Jan 29 at 0:02
I still tend to use all-caps for constants. One reason for that is that I do a lot of interop and importing constants from C headers would be even more of a pain than it already is if I had to rename them all :) – Stu Mackellar Jan 29 at 0:04
@Stu Mackellar: Check out Resharper for refactoring. Renaming is no problem. :) – Bobby Cannon Jan 29 at 1:11

4 Answers

vote up 5 vote down check
const int BUFFER_SIZE = 1024;

Do not use "static readonly" because it creates a variable. "const" are replaced at build time and do not create variables.

link|flag
1  
I consider this poor form. If I have this is assembly A, and assembly B references it it can leads to unexpected behavior. Change the value in assembly A and recompile and the old value will continue to be used in assembly B unless it is recompiled. – ctacke Jan 28 at 23:56
@ctacke This is exactly analogous to a #define in a C header file - every module that used it would need to be recompiled if its value changed. I agree with Vernicht +1 – Stu Mackellar Jan 28 at 23:59
@ctacke: thats why I use constants with the PRIVATE modifier – Jader Dias Jan 29 at 0:06
@Stu Mackellar, Vernicht: I agree with ctacke. Using const is ok but you must ensure that you are not sharing across assemblies. If you go public make sure you are using readonly! Reference: Effective C# : Item 2 - Prefer readonly to const – Bobby Cannon Jan 29 at 1:13
vote up 5 vote down

Personally, I prefer constants:

private const int BUFFER_SIZE = 1024;

Though, if it's public and you're a framework, you may want it to be a readonly to avoid client recompiles.

link|flag
Interesting - you prefer the const, even knowing the inherent danger? – ctacke Jan 28 at 23:57
If it is private to the assembly, there's no benefit for using the readonly variable over the constant. There's only a danger if the constant is exposed to other assemblies. – Steve Mitcham Jan 29 at 0:02
Also: it's hard to imagine a case where you're distributing a framework and users of your framework wouldn't need to recompile for the new version anyway. – Joel Coehoorn Jan 29 at 0:08
@ctacke - making the const private or internal solves that problem...very rarely would I ever expose a const as public. Besides that, I don't tend to make frameworks - so I expect dependent assemblies to recompile anyway. – Mark Brackett Jan 29 at 0:38
Lots of "hard to imagine" and "rarely" items here. If experience has taught me nothing in software development, it's always the rare bugs that bite me in the ass. Getting in the habit of using a static read-only means I never have to think about "what if" or someone else changing the scope. – ctacke Jan 29 at 14:05
vote up 2 vote down
public static readonly int BUFFER_SIZE = 1024;

I prefer this over a const due to the compiler shenanigans that can happen with a const value (const is just used for replacement, so changing the value will not change it in any assembly compiled against the original).

link|flag
I agree. I learned this from Effective C# : Item 2 - Prefer readonly to const. – Bobby Cannon Jan 29 at 1:12
vote up 1 vote down

Don't use #define.

Define a constante: private const int BUFFER_SIZE or readonly variable: private readonly int BUFFER_SIZE

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.