Compiler Error CS1913
Member 'name' cannot be initialized. It is not a field or property.
Object initializers can only be used to initialize accessible fields or properties.
- Initialize the class member in a regular constructor or other initialization method.
The following example generates CS1913:
C#
// 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(){}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: