TypeName.FullName プロパティ

定義

名前空間を含め、アセンブリ名を含まない、この型の完全な名前を取得します。たとえば、"System.Int32" などです。 入れ子になった型は '+' で表されます。たとえば、"MyNamespace.MyType+NestedType" などです。

public:
 property System::String ^ FullName { System::String ^ get(); };
public string FullName { get; }
member this.FullName : string
Public ReadOnly Property FullName As String

プロパティ値

注釈

構築されたジェネリック型の場合、型引数は完全修飾名を使用して一覧表示されます。 たとえば、"List<int>" と指定すると、 FullName プロパティは "System.Collections.Generic.List1[[System.Int32, mscorlib, ...]]". For open generic types, the convention is to use a backtick ("") の後にジェネリック型のアリティを返します。 たとえば、"Dictionary<,>" を指定すると、 FullName プロパティは "System.Collections.Generic.Dictionary2". Given "Dictionary&lt;,&gt;.Enumerator", the <xref data-throw-if-not-resolved="true" uid="System.Reflection.Metadata.TypeName.FullName"></xref> property will return "System.Collections.Generic.Dictionary2+Enumerator" を返します。 詳細については、ECMA-335、Sec. I.10.7.2 (型名とアリティ エンコード) を参照してください。

適用対象