Skip to content

Instantly share code, notes, and snippets.

@mkrueger
Created April 23, 2012 12:08
Show Gist options
  • Save mkrueger/2470536 to your computer and use it in GitHub Desktop.
Save mkrueger/2470536 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
public class Bar : List<string>
{
public object Test { get; set; }
}
class Foo
{
public static void Main (string[] args)
{
var b = new Bar {
"eelvlv",
"evlelvcl",
Test = null
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment