Skip to content

Instantly share code, notes, and snippets.

@gaboratorium
Created June 8, 2016 20:26
Show Gist options
  • Save gaboratorium/be6fe44dcf82a3e594dfa692d61a38e0 to your computer and use it in GitHub Desktop.
Save gaboratorium/be6fe44dcf82a3e594dfa692d61a38e0 to your computer and use it in GitHub Desktop.
C# Generics: 2.: Generic class #csharp #generics Raw
public class GenericClass<T>
{
public void Add(T value)
{
//Deploy
}
public T this[int index]
{
get { throw new NotImplementedException(); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment