Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TypeBuilder::AssemblyQualifiedName Property

 

Returns the full name of this type qualified by the display name of the assembly.

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
property String^ AssemblyQualifiedName {
	virtual String^ get() override;
}

Property Value

Type: System::String^

Read-only. The full name of this type qualified by the display name of the assembly.

The format of the returned string is the concatenation of the full name of the type (FullName) and the display name of the assembly (AssemblyName::FullName), separated by a comma and a space.

See AssemblyName for a description of the format of the display name of an assembly.

In the .NET Framework versions 1.0 and 1.1, the value of this property does not include the culture or public key.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Return to top
Show:
© 2017 Microsoft