閱讀英文

共用方式為


編譯器錯誤 CS0735

指定做為 TypeForwardedTo 屬性引數的類型無效

下列範例會產生 CS0735。

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