Partager via


Erreur du compilateur CS0643

Mise à jour : novembre 2007

Message d'erreur

l'argument d'attribut nommé 'arg' est dupliqué
'arg' duplicate named attribute argument

Un paramètre arg sur un attribut défini par l'utilisateur a été spécifié deux fois. Pour plus d'informations, consultez Attributs (Guide de programmation C#).

Exemple

L'exemple suivant génère l'erreur CS0643 :

// CS0643.cs
using System;
using System.Runtime.InteropServices;

[AttributeUsage(AttributeTargets.Class)]
public class MyAttribute : Attribute
{
    public MyAttribute()
    {
    }

    public int x;
}

[MyAttribute(x = 5, x = 6)]   // CS0643, error setting x twice
// try the following line instead
// [MyAttribute(x = 5)]
class MyClass
{
}

public class MainClass
{
    public static void Main ()
    {
    }
}