Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 653381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:22:33+00:00 2026-05-13T22:22:33+00:00

I need a function that will convert a type to a string, for example:

  • 0

I need a function that will convert a type to a string, for example:

Dim foo as Dictionary(of Dictionary(of Integer, String), Integer)
Debug.WriteLine(TypeToString(GetType(foo)))

In the debug output, I’d expect to see something equivalent to:

Dictionary(of Dictionary(of Integer, String), Integer)
  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T22:22:34+00:00Added an answer on May 13, 2026 at 10:22 pm

    Here’s some extension methods I use to do what you ask, but it’s in C# and generate C#.

    You can either keep it in C#, but change the output to VB.Net or do a full conversion to VB.Net if you like.

    public static string ToCode(this Type @this)
    {
        string @return = @this.FullName ?? @this.Name;
        Type nt = Nullable.GetUnderlyingType(@this);
        if (nt != null)
        {
            return string.Format("{0}?", nt.ToCode());
        }
        if (@this.IsGenericType & !@this.IsGenericTypeDefinition)
        {
            Type gtd = @this.GetGenericTypeDefinition();
            return string.Format("{0}<{1}>", gtd.ToCode(), @this.GetGenericArguments().ToCode());
        }
        if (@return.EndsWith("&"))
        {
            return Type.GetType(@this.AssemblyQualifiedName.Replace("&", "")).ToCode();
        }
        if (@this.IsGenericTypeDefinition)
        {
            @return = @return.Substring(0, @return.IndexOf("`"));
        }
        switch (@return)
        {
            case "System.Void":
                @return = "void";
                break;
    
            case "System.Int32":
                @return = "int";
                break;
    
            case "System.String":
                @return = "string";
                break;
    
            case "System.Object":
                @return = "object";
                break;
    
            case "System.Double":
                @return = "double";
                break;
    
            case "System.Int64":
                @return = "long";
                break;
    
            case "System.Decimal":
                @return = "decimal";
                break;
    
            case "System.Boolean":
                @return = "bool";
                break;
        }
         return @return;
    }
    
    public static string ToCode(this IEnumerable<Type> @this)
    {
        var @return = "";
        var ts = @this.ToArray<Type>();
        if (ts.Length > 0)
        {
            @return = ts[0].ToCode();
            if (ts.Length > 1)
            {
                foreach (Type t in ts.Skip<Type>(1))
                {
                    @return = @return + string.Format(", {0}", t.ToCode());
                }
            }
        }
        return @return;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

does php have a function that will convert a string (data type will be
I need a function to return a string that will only be accessed read-only.
I need a regex or a function in PHP that will validate a string
I need a function that can print Turkish characters. public String convert(String input) {
Is there a standard function that will convert http headers into a python dictionary,
I need a function that will take a bitmap and return the bitmap with
I need a VBA function that will perform the following: Find all unique values
I need to create a function that uses a loop. This function will open
I need a function that could generate a regex. For example if I write
I need a function that can intersect 2 arrays for example: $Array1 = array(1,2,3);

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.