Skip to content

Is there a sample for the Implicit indexer access in object initializers #75197

Closed Answered by WeihanLi
WeihanLi asked this question in Q&A
Discussion options

You must be logged in to vote

need to be inside a object

internal class ImplicitIndexAccessSample
{
    public static void MainTest()
    {
        var a = new TestClass()
        {
            Numbers =
            {
                [0] = 3,
                [^1] = 1
            }
        };
        foreach (var item in a.Numbers)
        {
            Console.WriteLine(item);
        }
    }
}

file sealed class TestClass
{
    public int[] Numbers { get; init; } = new int[3];
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by WeihanLi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant