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

  • Home
  • SEARCH
  • 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 7178457
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T16:55:30+00:00 2026-05-28T16:55:30+00:00

I can’t seem to find any documentation on what new[] is supposed to be.

  • 0

I can’t seem to find any documentation on what new[] is supposed to be. From the example below it seems to be an object array shorthand

var json = new[] {
            new object[] {"20-Jun-2008", 200 },
            new object[] {"20-Jun-2009", 250 }
        };
  • 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-28T16:55:31+00:00Added an answer on May 28, 2026 at 4:55 pm

    These are implicitly typed arrays.

    See C# 3.0 specifications.

    The syntax of array creation expressions (§7.5.10.2) is extended to
    support implicitly typed array creation expressions:
    array-creation-expression: … new [ ] array-initializer

    In an implicitly typed array creation expression, the type of the
    array instance is inferred from the elements specified in the array
    initializer. Specifically, the set formed by the types of the
    expressions in the array initializer must contain exactly one type to
    which each type in the set is implicitly convertible, and if that type
    is not the null type, an array of that type is created. If exactly one
    type cannot be inferred, or if the inferred type is the null type, a
    compile-time error occurs.

    The following are examples of implicitly typed array creation
    expressions:

    var a = new[] { 1, 10, 100, 1000 };            // int[]
    var b = new[] { 1, 1.5, 2, 2.5 };            // double[]
    var c = new[] { "hello", null, "world" };      // string[]
    var d = new[] { 1, "one", 2, "two" };         // Error
    

    The last expression causes a compile-time error because neither int
    nor string is implicitly convertible to the other. An explicitly typed
    array creation expression must be used in this case, for example
    specifying the type to be object[]. Alternatively, one of the elements
    can be cast to a common base type, which would then become the
    inferred element type.

    Implicitly typed array creation expressions can be combined with
    anonymous object initializers to create anonymously typed data
    structures. For example:

    var contacts = new[] {
       new {
          Name = "Chris Smith",
          PhoneNumbers = new[] { "206-555-0101", "425-882-8080" }
       },
       new {
          Name = "Bob Harris",
          PhoneNumbers = new[] { "650-555-0199" }
       }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know how can I replace this 2 symbol below from the string
Can any one tell, how to get the result of LINQ query contains group
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I am trying to find ID3V2 tags from MP3 file using jid3lib in Java.
Can anybody tell me a regular expression to use within some PHP to find
Can some one confirm me that only one UIWindow instance is possible in any
Can MOSS integrate and get user profiles from multiple Active Directory and/or LDAP stores?
Can a Visual Studio 2008 custom tool be passed additional parameters from the custom
Can I prevent an .apk from being installed if unknown sources is checked?
Can any one help me in sorting this out in sed/awk/perl Input file Start

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.