Created
November 24, 2012 03:03
-
-
Save MayogaX/4138205 to your computer and use it in GitHub Desktop.
Exemple List
This file contains hidden or 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
| private List<T> SetMyList (List<T> list) | |
| { | |
| MyClass my = new MyClass(); | |
| my.anything = “anything in string”; | |
| my.theNumber = 666; | |
| list.Add(my); | |
| return my; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment