The following code shows C# class constructor A(). What is wrong? class A { private int _id; public int A() { _id = 0; } }
C# constructor does not have return type.