1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
class Foo<T> { } class Stack<T> { } // // We may use a constructed type `Stack<T>' instead of // just a type parameter. // class Bar<T> : Foo<Stack<T>> { } class X { public static void Main () { } }