Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3936648
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T23:58:24+00:00 2026-05-19T23:58:24+00:00

As you know, it is not allowed to use the Array-initialisation syntax with Lists.

  • 0

As you know, it is not allowed to use the Array-initialisation syntax with Lists. It will give a compile-time error. Example:

List<int> test = { 1, 2, 3} 
// At compilation the following error is shown:
// Can only use array initializer expressions to assign to array types. 

However today I did the following (very simplified):

class Test
{
     public List<int> Field;
}

List<Test> list = new List<Test>
{
    new Test { Field = { 1, 2, 3 } }
};

The code above compiles just fine, but when run it will give a “Object references is not set to an object” run-time error.

I would expect that code to give a compile-time error. My question to you is: Why doesn’t it, and are there any good reasons for when such a scenario would run correctly?

This has been tested using .NET 3.5, both .Net and Mono compilers.

Cheers.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T23:58:24+00:00Added an answer on May 19, 2026 at 11:58 pm

    I think this is a by-design behavior. The Test = { 1, 2, 3 } is compiled into code that calls Add method of the list stored in the Test field.

    The reason why you’re getting NullReferenceException is that Test is null. If you initialize the Test field to a new list, then the code will work:

    class Test {    
      public List<int> Field = new List<int>(); 
    }  
    
    // Calls 'Add' method three times to add items to 'Field' list
    var t = new Test { Field = { 1, 2, 3 } };
    

    It is quite logical – if you write new List<int> { ... } then it creates a new instance of list. If you don’t add object construction, it will use the existing instance (or null). As far as I can see, the C# spec doesn’t contain any explicit translation rule that would match this scenario, but it gives an example (see Section 7.6.10.3):

    A List<Contact> can be created and initialized as follows:

    var contacts = new List<Contact> {
        new Contact {
            Name = "Chris Smith",
            PhoneNumbers = { "206-555-0101", "425-882-8080" }
        },
        new Contact {
            Name = "Bob Harris",
            PhoneNumbers = { "650-555-0199" }
        }
    };
    

    which has the same effect as

    var contacts = new List<Contact>();
    Contact __c1 = new Contact();
    __c1.Name = "Chris Smith";
    __c1.PhoneNumbers.Add("206-555-0101");
    __c1.PhoneNumbers.Add("425-882-8080");
    contacts.Add(__c1);
    Contact __c2 = new Contact();
    __c2.Name = "Bob Harris";
    __c2.PhoneNumbers.Add("650-555-0199");
    contacts.Add(__c2);
    

    where __c1 and __c2 are temporary variables that are otherwise invisible and inaccessible.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I do not know how to ask this question. So I will just give
I know your not really supposed to use Flash and SWF's in a Sencha
I'm not allowed to use a struct with the in keyword, am I? For
I know not my .htaccess is working since it is showing the ErrorDocument 404
In an ASP.Net WAP, the home page /default.aspx is receiving periodic requests from I-know-not-where.
I do not know why my google markers are not showing. I am using
I do not know what I am doing when it comes to JSON. So
I do not know javascript right now but I am planning on learning it.
I do not not know much about Regex, I want to try parsing sting
I do not know why there are 2 matches found aside from the input

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.