TypeName.FullName Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il nome completo di questo tipo, incluso lo spazio dei nomi, ma senza il nome dell'assembly; ad esempio "System.Int32". I tipi annidati sono rappresentati con un '+'; ad esempio "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
Valore della proprietà
Commenti
Per i tipi generici costruiti, gli argomenti di tipo verranno elencati usando i relativi nomi completi. Ad esempio, dato "List<int>", la FullName proprietà restituirà "System.Collections.Generic.List1[[System.Int32, mscorlib, ...]]". For open generic types, the convention is to use a backtick ("" seguita dall'arità del tipo generico. Ad esempio, dato "Dictionary<",> la FullName proprietà restituirà "System.Collections.Generic.Dictionary2". Given "Dictionary<,>.Enumerator", the <xref data-throw-if-not-resolved="true" uid="System.Reflection.Metadata.TypeName.FullName"></xref> property will return "System.Collections.Generic.Dictionary2+Enumerator". Per altre informazioni, vedere ECMA-335, sec. I.10.7.2 (nomi dei tipi e codifica arity).