When working with JavaScript, it's pretty straightforward to create a new object and set its attributes. For example, if I want to set an attribute of an object, I can simply do `objectName.attributeName = whatever`. However, is there a way to achieve something similar in C# WITHOUT the need to define a class?
var clean = new Object();
clean.isClean = true;