Catel.IoC.TypeFactory.CreateInstanceWithParameters C# (CSharp) Method

CreateInstanceWithParameters() public method

Creates an instance of the specified type using the specified parameters as injection values.
The is null.
public CreateInstanceWithParameters ( Type typeToConstruct ) : object
typeToConstruct System.Type The type to construct.
return object
        public object CreateInstanceWithParameters(Type typeToConstruct, params object[] parameters)
        {
            return CreateInstanceWithParametersWithTag(typeToConstruct, null, parameters);
        }