Skip to content

Instantly share code, notes, and snippets.

@snippe
Created December 6, 2014 12:58
Show Gist options
  • Save snippe/fd38a7c19a0be1418d5b to your computer and use it in GitHub Desktop.
Save snippe/fd38a7c19a0be1418d5b to your computer and use it in GitHub Desktop.
class Program
{
static void Main()
{
GenericList<int> intList = new GenericList<int>();
GenericList<string> stringList = new GenericList<string>();
}
}
class GenericList<T>
{
public void Add(T input) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment