Creates the name of a type qualified by the display name of its assembly.
[Visual Basic] Public Shared Function CreateQualifiedName( _ ByVal assemblyName As String, _ ByVal typeName As String _ ) As String [C#] public static string CreateQualifiedName( string assemblyName, string typeName ); [C++] public: static String* CreateQualifiedName( String* assemblyName, String* typeName ); [JScript] public static function CreateQualifiedName( assemblyName : String, typeName : String ) : 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.
Assembly Class | Assembly Members | System.Reflection Namespace