Assembly::CreateQualifiedName Method (String^, String^)

 

Creates the name of a type qualified by the display name of its assembly.

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

public:
static String^ CreateQualifiedName(
	String^ assemblyName,
	String^ typeName
)

Parameters

assemblyName
Type: System::String^

The display name of an assembly.

typeName
Type: System::String^

The full name of a type.

Return Value

Type: System::String^

The full name of the type qualified by the display name of the assembly.

The format of the returned string is:

<FullTypeName>, <AssemblyDisplayName>

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

To accommodate changes in versions of the common language runtime, use this method rather than constructing the qualified name yourself. For information about qualified assembly names, see Type::AssemblyQualifiedName.

.NET Framework
Available since 1.1
Return to top
Show: