How to make a simple object?

In AS3, you would do:
var obj:Object = new Object();
obj.hello = “hi”;
obj.what = “whereWhen”;

trace (obj.what) // whereWhen

Really nice and easy.
How can you do this in C# without using a method?

Ty!:crazy: