前方参照を使っていて、それが書かれているネームスペースがおかしいと起こる。
間違い例
1 2 3 4 5 6 |
ref class OtherClass; namespace MyNS { ref Class MyClass { OtherClass^ get(); } } |
正解例:
1 2 3 4 5 6 |
namespace MyNS { ref class OtherClass; ref Class MyClass { OtherClass^ get(); } } |