HomeCSharpC# Error CS0623 – Array initializers can only be used in a variable or field initializer. Try using a new expression instead.

C# Error CS0623 – Array initializers can only be used in a variable or field initializer. Try using a new expression instead.

C# Error

CS0623 – Array initializers can only be used in a variable or field initializer. Try using a new expression instead.

Reason for the Error & Solution

Array initializers can only be used in a variable or field initializer. Try using a new expression instead.

An attempt was made to initialize an array by using an array initializer in a context where it is not allowed.

Example

The following example produces CS0623 because the compiler interprets the {4} as embedded array initializer inside the outer array initializer:

//cs0632.cs  
using System;  
  
class X  
{  
    public int[] x = { 2, 3, {4}}; //CS0623  
}  

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...