The question is in title.
What does comma mean as a length of array in C#?
How it is called, how to find it on the Internet?
I searched for "how to initialize array in C#" in google but there is no information about this comma. If I remove comma VS shows an error: "array initializers can only be used in a variable". Even after assigning it to variable it still shows error.
EntityFramework generates the following code:
migrationBuilder.InsertData(
table: "Test",
columns: new[] { "Name" },
values: new object[,]
{
{ "Test" },
{ "Test1" }
});