Aqueduct.Configuration.Loaders.ConfigurationLoader.ConvertType C# (CSharp) Method

ConvertType() public method

public ConvertType ( string type ) : Type
type string
return System.Type
        public Type ConvertType (string type)
        {
            if (type.IsNullOrEmpty())
                return typeof(string);

            return _typeConverter.ParseType (type);
        }