Last active
June 8, 2016 20:23
-
-
Save gaboratorium/c824195510bb8b530e8735a0e7bc5b70 to your computer and use it in GitHub Desktop.
C# Generics: 1.: Regular class #csharp #generics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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