Catel.Reflection.TypeCache.GetTypeWithAssembly C# (CSharp) Method

GetTypeWithAssembly() public static method

Gets the specified type from the loaded assemblies.
The is null or whitespace. The is null or whitespace.
public static GetTypeWithAssembly ( string typeName, string assemblyName, bool ignoreCase = false ) : Type
typeName string The name of the type including namespace.
assemblyName string The name of the type including namespace.
ignoreCase bool A value indicating whether the case should be ignored.
return System.Type
        public static Type GetTypeWithAssembly(string typeName, string assemblyName, bool ignoreCase = false)
        {
            Argument.IsNotNullOrWhitespace("typeName", typeName);
            Argument.IsNotNullOrWhitespace("assemblyName", assemblyName);

            return GetType(typeName, assemblyName, ignoreCase);
        }