次の方法で共有


コンパイラ エラー C3103

'argument': 名前付き引数が繰り返されています

属性では、名前付き引数を繰り返すことはできません。

詳細については、「 User-Defined Attributes」を参照してください。

次の例では C3103 が生成されます。

// C3103.cpp
// compile with: /clr /c
using namespace System;

[AttributeUsage(AttributeTargets::All)]
public ref class Attr : public Attribute {
public:
   int m_t;
};

[Attr(m_t = 10, m_t = 1)]   // C3103
// try the following line instead
// [Attr(m_t = 10)]
ref class A {};