I am not quite sure what it is you're after, but I have a feeling that what you're trying to do is link expressions so that you don't have to create new variables to hold your instances.
I am thinking that you want to replace this:
Thingy thing = new Thingy("This is a constructor call")
this.myObject.Add(thing);
by this:
this.myObject.Add(new Thingy("This is a constructor call"));
As you can see, the only difference is that in the first case you'll get a handle to the instance of Thingy that you've created, called 'thing' that you can then use to call methods on, while you in the other case don't store this instance in a variable.
If this is the roblem you're having I suggest you start off by learning about constructors, because without understanding what they do there's little gain in writing short, compact code.
Best of luck.