我正在编写一个 C++/CLI 类,我需要这样的东西:
System::Object^ person = gcnew { firstName = "John", lastName = "Smith" };
这是我为 C# 找到的内容: MSDN - 匿名类型
有没有人有 C++/CLI 的例子,如果有可能实现的话?
我正在编写一个 C++/CLI 类,我需要这样的东西:
System::Object^ person = gcnew { firstName = "John", lastName = "Smith" };
这是我为 C# 找到的内容: MSDN - 匿名类型
有没有人有 C++/CLI 的例子,如果有可能实现的话?