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

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...