Object initializers in C++/CLI

1.3k Views Asked by At

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.

0

There are 0 best solutions below