The Easiest Way to Save and Share Code Snippets on the web

Untitled

csharp

posted: Aug, 5th 2010 | jump to bottom

class B
{
    public class T { }
}
 
class C<T> : B
{
    T x; // This is type parameter
}
 
84 views