HomeCSharpC# Error CS1912 – Duplicate initialization of member ‘{0}’

C# Error CS1912 – Duplicate initialization of member ‘{0}’

C# Error

CS1912 – Duplicate initialization of member ‘{0}’

Reason for the Error & Solution

Duplicate initialization of member ‘name’.

An object initializer can initialize each member only one time.

To correct this error

  1. Remove the second initialization of the member in the object initializer.

Example

The following code generates CS1912 because memberA is initialized two times:

// cs1912.cs  
using System.Linq;  
  
public class TestClass  
{  
    public int memberA { get; set; }  
    public int memberB { get; set; }  
}  
  
public class Test  
{  
    static void Main()  
    {  
        TestClass tc = new TestClass() { memberA = 5, memberA = 6, memberB = 2}; // CS1912  
    }  
}  

Leave a Reply

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