閱讀英文

共用方式為


編譯器錯誤 CS0729

類型 'type' 定義於這個組件中,但已為其指定類型轉送子

您不可以使用相同組件中所定義之類型的類型轉送子。

範例

下列範例會產生 CS0729。

C#
// CS0729.cs  
// compile with: /target:library  
using System.Runtime.CompilerServices;  
[assembly:TypeForwardedTo(typeof(TestClass))]   // CS0729  
class TestClass {}