System::Reflection::Assembly クラス

Assembly class

Reflection class describing assembly. Support is limited as the rules are quite different between C# and C++. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class Assembly : public System::Object

メソッド

メソッド説明
Assembly()コンストラクタ。
virtual get_CodeBase() const現在のアセンブリのディレクトリを取得します。サポートは限定的です。
virtual get_FullName() constアセンブリの完全名を取得します。
virtual get_Location() constアセンブリの場所を取得します。未実装です。
static GetAssembly(const TypeInfo&)特定の型を定義しているアセンブリを取得します。
static GetCallingAssembly()呼び出し元アセンブリを取得します。
static GetEntryAssembly()エントリ アセンブリを取得します。
static GetExecutingAssembly()実行中のアセンブリを取得します。
virtual GetManifestResourceNames() constマニフェスト リソースの名前を取得します。
virtual GetManifestResourceStream(String) constマニフェスト リソースに接続されたストリームを取得します。
virtual GetName() constアセンブリ名を取得します。
virtual GetTypes() constアセンブリで宣言された型を取得します。

参照