Visual C ++でアンマネージ例外を作成する方法を知りたいですか?
#include <string>
#include <exception>
using namespace std;
using namespace System;
class GraphException : public Exception
{
public:
GraphException() { }
// GraphException(string message) : Exception (message)
// { }
// GraphException(string message, Exception inner) : Exception (message, inner)
// { }
};
これは機能しません。次のエラーが発生します。
エラー1エラーC3625:'GraphException':アンマネージ型はマネージ型から派生できません' System :: Exception'c:\ widethfirst \graph \graphexception.h 10 1 widethFirst
誰か助けてくれませんか?