Skip to content

Instantly share code, notes, and snippets.

@gaboratorium
Last active June 8, 2016 20:23
Show Gist options
  • Save gaboratorium/c824195510bb8b530e8735a0e7bc5b70 to your computer and use it in GitHub Desktop.
Save gaboratorium/c824195510bb8b530e8735a0e7bc5b70 to your computer and use it in GitHub Desktop.
C# Generics: 1.: Regular class #csharp #generics
public class Commander
{
public void Deploy(object value)
{
//Deploy
}
public object this[int index]
{
//Report
get { throw new NotImplementedException(); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment