Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Win Rt 中移植 C++/C 库。旧图书馆包含许多内部类。
我想知道如何在 Win Rt 中转换这些类。我凝视着它在那里没有找到任何例子。
在常规课程中,您可以像以前一样进行操作。在 ref 类中,您只能声明内部/私有类。
public ref class Class1 sealed { public: Class1(); internal: class Class2 { public: void Do(); }; };