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 6966989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:15:48+00:00 2026-05-27T16:15:48+00:00

When you Debug.Print some object types in the Visual Studio 2010 debugger, the output

  • 0

When you Debug.Print some object types in the Visual Studio 2010 debugger, the output includes a backtick. What does the backtick mean?

Dim myList as List = a List
Debug.Print(myList.GetType().ToString()

Output in Immediate Window debugger:

System.Collections.Generic.List`1[System.String]

  • 1 1 Answer
  • 0 Views
  • 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-27T16:15:49+00:00Added an answer on May 27, 2026 at 4:15 pm

    It’s indicating the number of items in the subsequent array. The array contains the generic types.

    List(Of String) has one generic type, namely string.

    Try creating an SomeClass(Of T as String, U as Integer) and seeing what you get…

    Public Class TestGeneric(Of T, U)
        Public Sub TellType(ByVal Something As T, ByVal SomethingElse As U)
            Console.WriteLine(Me.GetType())
        End Sub
    End Class
    
    Sub Main()
        Dim MyTestGeneric As New TestGeneric(Of String, Integer)
        MyTestGeneric.TellType("Test", 3)
        Console.ReadKey(True)
    End Sub
    

    Output:

    SO8593626.Program+TestGeneric`2[System.String,System.Int32]
    

    Two types: String, Int

    Because of the structure, it’s able to represent nested generic types in a tree-like fashion…

        Dim MyTestGeneric As New TestGeneric(Of String, Integer)
        Dim MyOtherGeneric As New TestGeneric(Of TestGeneric(Of String, Integer), Integer)
        MyOtherGeneric.TellType(MyTestGeneric, 3)
    

    outputs

        SO8593626.Program+TestGeneric`2[SO8593626.Program+TestGeneric`2[System.String,System.Int32],System.Int32]
    

    Two root types, one of which is generic: [String, Int], Int

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to print out some debug messages in my erb template when it
A friend of mine claims that calls to Debug.Print() as well as first-chance exception
How do I print debug messages in the Google Chrome JavaScript Console? Please note
$jj_post is the array output debug via print_r() . This variable is an array
Trying to create a macro which can be used for print debug messages when
When I use PRINT statements to debug and monitor long running queries in SQL
I can use the PRINT statement in a stored procedure to debug my code.
After having some trouble with object deletion, I ran a simple test: Created a
I'm trying to debug some STL based C++ code in gdb. The code has
In order to debug failing requests I would like to print all information coming

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.