Gets the fully qualified name of the Type, including the namespace of the Type.
[Visual Basic] MustOverride Public ReadOnly Property FullName As String [C#] public string FullName {abstract get;} [C++] public: __property virtual String* get_FullName() = 0; [JScript] public abstract function get FullName() : String;
The fully qualified name of the Type, including the namespace of the Type.
Type names may include trailing characters that denote additional information about the type, such as whether the type is a reference type, a pointer type or an array type. To retrieve the type name without these trailing characters, use t. GetElementType (). ToString (), where t is the type.