Skip to content

Instantly share code, notes, and snippets.

@MayogaX
Created November 24, 2012 03:03
Show Gist options
  • Select an option

  • Save MayogaX/4138205 to your computer and use it in GitHub Desktop.

Select an option

Save MayogaX/4138205 to your computer and use it in GitHub Desktop.
Exemple List
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