In C# I can do this:
foo( new SomeClass() { SomeProperty = "value" } );
Now in C++/CLI I can equivalently do this:
auto tmp = gcnew SomeClass();
tmp->SomeProperty="value";
foo (tmp);
But is there a syntax for C++/CLI that is similar to C# object initializers? In particular I don't want to define a temporary variable and I can't add arguments to the constructor itself.