หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'member' : override specifier 'override' not allowed on static member functions or constructors
Remarks
An override was specified incorrectly. For more information, see Explicit Overrides.
Example
The following example generates C3669.
// C3669.cpp
// compile with: /clr
public ref struct R {
R() override {} // C3669
};