Module.FullyQualifiedName プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > Module.FullyQualifiedName プロパティの意味・解説 

Module.FullyQualifiedName プロパティ

このモジュールの完全修飾名とパスを表す文字列を取得します

名前空間: System.Reflection
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Overridable ReadOnly
 Property FullyQualifiedName As String
Dim instance As Module
Dim value As String

value = instance.FullyQualifiedName
public virtual string FullyQualifiedName {
 get; }
public:
virtual property String^ FullyQualifiedName {
    String^ get ();
}
/** @property */
public String get_FullyQualifiedName ()
public function get FullyQualifiedName
 () : String

プロパティ
モジュールの完全修飾名。

例外例外
例外種類条件

SecurityException

呼び出し元に必要なアクセス許可がありません。

解説解説
使用例使用例

指定したモジュールの完全修飾名を表示する例を次に示します

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
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からModule.FullyQualifiedName プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からModule.FullyQualifiedName プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からModule.FullyQualifiedName プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「Module.FullyQualifiedName プロパティ」の関連用語

Module.FullyQualifiedName プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



Module.FullyQualifiedName プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS