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。 例如,给定“字典<,>”,FullName

属性将返回“System.Collections.Generic.Dictionary'2”。 给定“字典<,>。枚举器“,

FullName 属性将返回“System.Collections.Generic.Dictionary'2+Enumerator”。

有关详细信息,请参阅 ECMA-335、秒 I.10.7.2(类型名称和 arity 编码)。

适用于