Module.FullyQualifiedName プロパティ
アセンブリ: mscorlib (mscorlib.dll 内)




Imports System Imports System.Reflection Namespace ReflectionModule_Examples Class MyMainClass Shared Sub Main() Dim moduleArray() As [Module] moduleArray = [Assembly].GetExecutingAssembly().GetModules(False) ' In a simple project with only one module, the module at index ' 0 will be the module containing this class. Dim myModule As [Module] = moduleArray(0) Console.WriteLine("myModule.FullyQualifiedName = {0}", myModule.FullyQualifiedName) End Sub 'Main End Class 'MyMainClass End Namespace 'ReflectionModule_Examples
using System; using System.Reflection; namespace ReflectionModule_Examples { class MyMainClass { static void Main() { Module[] moduleArray; moduleArray = Assembly.GetExecutingAssembly().GetModules(false); // In a simple project with only one module, the module at index // 0 will be the module containing this class. Module myModule = moduleArray[0]; Console.WriteLine("myModule.FullyQualifiedName = {0}", myModule.FullyQualifiedName); } } }
using namespace System; using namespace System::Reflection; int main() { array<Module^>^moduleArray; moduleArray = Assembly::GetExecutingAssembly()->GetModules( false ); // In a simple project with only one module, the module at index // 0 will be the module containing this class. Module^ myModule = moduleArray[ 0 ]; Console::WriteLine( "myModule.FullyQualifiedName = {0}", myModule->FullyQualifiedName ); }
package ReflectionModule_Examples; import System.*; import System.Reflection.*; class MyMainClass { public static void main(String[] args) { Module moduleArray[]; moduleArray = Assembly.GetExecutingAssembly().GetModules(false); // In a simple project with only one module, the module at index // 0 will be the module containing this class. Module myModule = (Module)moduleArray.get_Item(0); Console.WriteLine("myModule.FullyQualifiedName = {0}", myModule.get_FullyQualifiedName()); } //main } //MyMainClass


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からModule.FullyQualifiedName プロパティを検索する場合は、下記のリンクをクリックしてください。

- Module.FullyQualifiedName プロパティのページへのリンク