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.
C++/C ライブラリを Win Rt に移植しようとしています。Old Library には多くの内部クラスが含まれています。
これらのクラスを Win Rt で変換する方法を考えています。そこには例が見つかりませんでした。
通常のクラスでは、以前と同じ方法で行うことができます。ref クラスでは、内部/プライベート クラスのみを宣言できます。
public ref class Class1 sealed { public: Class1(); internal: class Class2 { public: void Do(); }; };