HomeCSharpC# Error CS1913 – Member ‘{0}’ cannot be initialized. It is not a field or property.

C# Error CS1913 – Member ‘{0}’ cannot be initialized. It is not a field or property.

C# Error

CS1913 – Member ‘{0}’ cannot be initialized. It is not a field or property.

Reason for the Error & Solution

Member ‘name’ cannot be initialized. It is not a field or property.

Object initializers can only be used to initialize accessible fields or properties.

To correct this error

  1. Initialize the class member in a regular constructor or other initialization method.

Example

The following example generates CS1913:

// cs1912.cs  
class A  
{  
    public delegate void D();  
    public event D myEvent;  
}  
  
public class Test  
{  
    static void Main()  
    {  
  
        A a = new A() {myEvent = M}; // CS1913  
    }  
  
    public void M(){}  
}  

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...