|
Listing 13-43 extracted from chapter
Generics
Listing 13-42< > Listing 13-44
This listing can be compiled with the command line: csc.exe /target:library Example_13_43.cs Errors: 0 Warnings: 0
Example_13_43.cs
class C<U, V> { }
public class A : System.Attribute{
void Fct1(C<int, string> c) { }
void Fct2<X>() { }
}
Copyright Patrick Smacchia 2006 2007
|