共用方式為


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.List'1[[System.Int32, mscorlib, ...]]”。

針對開啟的泛型類型,慣例是使用反引號 (“'”) 後面接著

泛型型別的 arity。 例如,假設 「Dictionary<,>」, FullName

屬性會傳回 「System.Collections.Generic.Dictionary』2” 指定「字典<,>。列舉值“,

FullName 屬性會傳回 「System.Collections.Generic.Dictionary』2+Enumerator“。

如需詳細資訊,請參閱 ECMA-335,秒 I.10.7.2(類型名稱和 arity 編碼)。

適用於