Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Error CS0735

Invalid type specified as an argument for TypeForwardedTo attribute

The following sample generates CS0735.

// CS735.cs
// compile with: /target:library
using System.Runtime.CompilerServices;
[assembly:TypeForwardedTo(typeof(int[]))]   // CS0735
[assembly:TypeForwardedTo(typeof(string))]   // OK
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.