|
Listing 13-42 extracted from chapter
Generics
Listing 13-41< > Listing 13-43
This listing can be compiled with the command line: csc.exe /target:library Example_13_42.cs Errors: 0 Warnings: 0
Example_13_42.cs
[System.AttributeUsage(System.AttributeTargets.GenericParameter)]
public class A : System.Attribute{}
class C<[A]U, V> { }
Copyright Patrick Smacchia 2006 2007
|