Errore del compilatore CS0735

Aggiornamento: novembre 2007

Messaggio di errore

Tipo non valido specificato come argomento dell'attributo TypeForwardedTo
Invalid type specified as an argument for TypeForwardedTo attribute

Il seguente codice di esempio genera l'errore CS0735.

// CS735.cs
// compile with: /target:library
using System.Runtime.CompilerServices;
[assembly:TypeForwardedTo(typeof(int[]))]   // CS0735
[assembly:TypeForwardedTo(typeof(string))]   // OK