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 6556647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:58:16+00:00 2026-05-25T12:58:16+00:00

Why can’t I use the array initializer with an implicitly typed variable? string[] words

  • 0

Why can’t I use the array initializer with an implicitly typed variable?

string[] words = { "apple", "strawberry", "grape" };                 // legal
string[] words = new string[]{ "apple", "strawberry", "grape" };     // legal
var words = new []{ "apple", "strawberry", "grape" };                // legal
var words = new string[]{ "apple", "strawberry", "grape" };          // legal

var words = { "apple", "strawberry", "grape", "peach" };             // ILLEGAL

Is there a technical reason for this limitation? Why can’t it infer the type like it would for:

var number = 10;
var text = "Hello";

The compiler clearly knows what I am trying to do, it just won’t allow it:

CS0820: Cannot assign array initializer to an implicitly typed local


Update: I compiled a program using the four legal array declaration methods, and it generates the same IL: http://pastebin.com/28JDAFbL

This just adds to my confusion. And “it is like this because the spec says so” is of little help. Why is the spec like this? What is the rationale here?

  • 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-25T12:58:17+00:00Added an answer on May 25, 2026 at 12:58 pm

    Why can’t I use the array initializer with an implicitly typed variable? Why is the spec like this? What is the rationale here?

    I was not on the design team when this decision was made, and the design notes(*) are silent on this subject. However, I asked someone who was in the room in 2005 when this decision was made.

    The explanation is prosaic. The design team was never very happy with the array initializer syntax in the first place. Frankly it is downright bizarre that an array initializer is not an expression and syntactically can only appear in a local or field declaration. It complicates the parser. It seems strange that

    int[] x = {1};
    

    should be legal, but

    M({1});
    

    is not.

    The array initialization syntax also makes error recovery during code analysis at edit time complicated. Suppose you have something like:

    class C
    {
        void M()
        {
            {
                int result = whatever();
                ...
            }
            {
                int result = somethingElse();
                ...
            }
        }
    }
    

    and you start typing a new declaration in the editor:

        void M()
        {
            int[] x = 
            {
                int result = whatever();
    

    and suddenly now the parser has to deal with disambiguating the situation in a way that does not confuse the poor user who is about to type “null;”. Clearly you do not intend to initialize the local variable with the block of code, but the parser is perfectly within its rights to say that the brace can only legally be part of an array initializer here, and therefore it is the “int result” that is unexpected.

    So, long story short, “classic” array initializers are a bit of a misfeature. We can’t get rid of them because of backwards compatibility reasons. But we also don’t want to encourage their use by allowing them in more places.

    The design team came up with the idea of prepending “new[]” to the array initializer, and make that into a legal expression, and now the problem is solved. There is no “creep” of the classic array initializer misfeature into new areas of the language, and there is a terse but readable syntax that clearly says “you are making a new array here”.

    The moral of the story is: try to get it right the first time, because syntax is forever.


    (*) In my search I did discover several interesting things: the team originally believed that “var” probably would not be the keyword chosen for the feature; apparently it grew on them. Also, one design called for “var” locals to not just be implicitly typed, but also be init-once locals. Obviously we never did implement init-once locals.

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

Sidebar

Related Questions

Can you cast a List<int> to List<string> somehow? I know I could loop through
Can I get a 'when to use' for these and others? <% %> <%#
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
Can I use the following across all browsers? <a href=# onclick=doSomething()>Click here.</a> Is this
I want use html5's new tag to play a wav file (currently only supported
Can the first char of a string be retrieved by doing the following? MyString.ToCharArray[0]
Can we use the asterisk character * for a search action in SQL database?
Does anyone know how can I replace this 2 symbol below from the string
Can somebody point me to a resource that explains how to go about having
Can anyone (maybe an XSL-fan?) help me find any advantages with handling presentation of

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.