หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
illegal form of __based
Remarks
A __based expression must be based on a pointer.
Example
The following example generates C2493:
// C2493.cpp
// compile with: /c
char mybase;
int __based(mybase) ptr; // C2493
// OK
char * mybase;
int __based(mybase) * ptr;