Public Shared Function GetTypeFromAssembly( _ ByVal typeName As String, _ ByVal assemblyName As String, _ ByVal throwOnError As Boolean _ ) As Type
Dim typeName As String Dim assemblyName As String Dim throwOnError As Boolean Dim value As Type value = ReflectionHelper.GetTypeFromAssembly(typeName, assemblyName, throwOnError)
public static Type GetTypeFromAssembly( string typeName, string assemblyName, bool throwOnError )
public: static Type* GetTypeFromAssembly( string* typeName, string* assemblyName, bool throwOnError )
public: static Type^ GetTypeFromAssembly( String^ typeName, String^ assemblyName, bool throwOnError )
Parameters
- typeName
- assemblyName
- throwOnError
Return Value
A System.Type object that represents the specified type, or a null reference (Nothing in Visual Basic) if the type cannot be loaded.