หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'parameter' : the name of a function parameter cannot be qualified
Remarks
You cannot use a qualified name as a function parameter.
Example
The following example generates C2751:
// C2751.cpp
// compile with: /c
namespace NS
{
class C {};
}
void func(int NS::C) {} // C2751