CS0579 de erro do compilador

Mensagem de erro

Atributo 'attribute' duplicado

Não é possível especificar o mesmo atributo mais de uma vez, a menos que o atributo especifica AllowMultiple = true in its AttributeUsage.

Exemplo

O exemplo a seguir gera CS0579.

// CS0579.cs
using System;
public class MyAttribute : Attribute
{
}

[AttributeUsage(AttributeTargets.All,AllowMultiple=true)]
public class MyAttribute2 : Attribute
{
}

public class z
{
    [MyAttribute, MyAttribute]     // CS0579
    public void zz()
    {
    }

    [MyAttribute2, MyAttribute2]   // OK
    public void zzz()
    {
    }

    public static void Main()
    {
    }
}