Is it possible to access an object's properties multiple times without repeatedly typing the object name? For example:
Using myObject {
.Name = "name";
.Colour = "red";
.Age = "99";
}
Rather than having to type out something like:
myObject.Name = "name";
myObject.Colour = "red";
myObject.Age = "99";