public string ConvertType(IType type)
        {
            if (type == null)
            {
                throw new ArgumentNullException("type");
            }

            TypeSystemAstBuilder astBuilder = CreateAstBuilder();
            AstType astType = astBuilder.ConvertType(type);

            return(astType.GetText());
        }