หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'identifier' : looks like a function definition, but there is no parameter list.
Remarks
The compiler detected what looked like a function, without the parameter list.
Example
The following example generates C2473.
// C2473.cpp
// compile with: /clr /c
class A {
int i {} // C2473
};
class B {
int i() {} // OK
};