إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'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