Share via


컴파일러 오류 CS0735

업데이트: 2007년 11월

오류 메시지

TypeForwardedTo 특성의 인수로 잘못된 형식이 지정되었습니다.
Invalid type specified as an argument for TypeForwardedTo attribute

다음 샘플에서는 CS0735 오류가 발생하는 경우를 보여 줍니다.

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