Is is possible to combine a List initializer and object initializer at the same time? Given the following class definition:
class MyList : List {
If you want to get something like this functionality, consider making a constructor argument:
var x = new CustomList("Hello World") { 1, 2, 3 }