Aqueduct.Configuration.Converter.TypeConverter.AddDefaultAliases C# (CSharp) Method

AddDefaultAliases() private method

private AddDefaultAliases ( ) : void
return void
        private void AddDefaultAliases()
        {
            _typeAliases["int"] = typeof(Int32);
            _typeAliases["integer"] = typeof(Int32);
            _typeAliases["string"] = typeof(String);
            _typeAliases["double"] = typeof(Double);
            _typeAliases["float"] = typeof(Single);
            _typeAliases["single"] = typeof(Single);
            _typeAliases["byte"] = typeof(Byte);
            _typeAliases["bool"] = typeof(bool);
            _typeAliases["boolean"] = typeof(bool);
            _typeAliases["guid"] = typeof(Guid);
            _typeAliases["list"] = typeof(IList<string>);
        }