C# does not allow an instance field initializer to reference another field. For instance this code is not valid :

class A
{
 string s1 = "";
 string s2 = s1;
}

because "s2" references "s1".

But why this is not permitted ?

My first thought was that the C# specs do not guarantee any initialization order but according to the specs the order is the order of declaration :

The variable initializers are executed in the textual order in which they appear in the class declaration.

So if the order is deterministic what could be the pitfalls of this kind of code ?

Thanks in advance for your help.

EDIT :

According to the answers of Hps, 0xA3 and Peter :

  • order of initialization in inheritance scenario could be very confusing,

  • implementing such a feature would require some resources from the compiler development team for little benefit,

  • it's not possible to use method or properties for logical reasons (thanks Peter), so for consistency the same is true for fields.

link|improve this question

79% accept rate
feedback

3 Answers

up vote 4 down vote accepted

This article may answer your question.

Execution Order

link|improve this answer
1  
So, basically the execution order between base and derived inline instance field initializers is not definite. – Hps Nov 26 '10 at 14:16
i can't UPvote because my daily limit is reached but i will surely do next day.Thanks for good link – Saurabh Nov 26 '10 at 14:22
Thanks for this link, it's no doubt a part of the answer. – Serious Nov 26 '10 at 14:49
feedback

I'm not sure about a field, but it seems rational to deny field initializers access to properties or methods. For example:

class A
{
    string s1 = GetString();
    string s2 = this.MyString;
    string s3 = "test";

    public string GetString()
    {
        // this method could use resources that haven't been initialized yet
    }

    public string MyString
    {
        get { return s3; } 
        // this field hasn't been initialized yet 
        // (okay, strings have a default value, but you get the picture
    }
}
link|improve this answer
You make a very good point here, thanks. – Serious Nov 26 '10 at 14:52
feedback

The compiler probably could check the order of the fields and then allow initialization if the other field has been previously declared.

Besides the pitfall that re-ordering or re-structuring breaks your code, why should the compiler be unnecessarily complex. Resources are limited, and the compiler team probably prefers working on features with higher priority.

link|improve this answer
Thanks for this remark. You must be right, the compiler team often justifies the lack of features by the lack of resources. Too bad that they have not more resources to make C# better than it is. – Serious Nov 26 '10 at 14:51
feedback

Your Answer

 
or
required, but never shown

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