vote up 0 vote down star
public struct Char
{
 public const char MaxValue = (char)0xffff;
 public const char MinValue = '\0';
}

Why don't make this fields to be static? What for it's always allocating additional memory for each char while this two values are permanent?

Edit: I don't know how I could forget about been static implicitly!

flag

74% accept rate
+1 tou counter the -1 this is a legit question i guess, dunno why you got downvoted – fmsf Feb 20 at 10:54
I can understand the downvote to some extent. It currently includes incorrect statements rather than asking, "Doesn't this mean that [...]." Not sure it's worth either up or down myself though. – Jon Skeet Feb 20 at 11:01

2 Answers

vote up 8 vote down check

Because they are static.

Const fields are static implicitly.

link|flag
vote up 12 vote down

const fields are implicity static. From section 10.4 of the spec:

Even though constants are considered static members, a constant-declaration neither requires nor allows a static modifier. It is an error for the same modifier to appear multiple times in a constant declaration.

link|flag

Your Answer

Get an OpenID
or

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