vote up 1 vote down star

In Java I can write:

public final static MyClass foo = new MyClass("foo");

is there an equivalent in C#?

flag

2  
Your declaration is missing a field name. – Jon Skeet Jul 25 at 9:45
thanks and sorry... – peter.murray.rust Jul 25 at 9:46

2 Answers

vote up 5 vote down check

The closest thing (not exactly the same, final has other meanings too) for Java final fields I can think of is readonly:

public static readonly MyClass field = new MyClass("foo");
link|flag
2  
For fields, they're almost exactly the same thing. There are different rules around initialization (irrelevant here) and for some times final fields in Java act like const fields in C#, but in this case I think they're effectively equivalent. – Jon Skeet Jul 25 at 9:47
Many thanks - this is what I needed – peter.murray.rust Jul 25 at 9:49
note that for primitive types there's also "const". – Robert Fraser Jul 25 at 10:08
The criteria for const is not being primitive or not, rather, it's being able to literally describe a value for it in code. You can have any const with a reference type set to null. – Mehrdad Jul 25 at 10:13
vote up -1 vote down
sealed class finalClass
{
   ...
}
link|flag
That's for a class - this is a field. – Jon Skeet Jul 25 at 9:44
my bad, so it is – medikgt Jul 25 at 9:46

Your Answer

Get an OpenID
or

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