BlueCollar.JobSerializer.CreateInstance C# (CSharp) Method

CreateInstance() private static method

Creates an IJob instance from the given type.
private static CreateInstance ( Type type ) : object
type System.Type The job type to create the instance of.
return object
        private static object CreateInstance(Type type)
        {
            return Activator.CreateInstance(type);
        }