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

  • Home
  • SEARCH
  • 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 92319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:10:06+00:00 2026-05-10T23:10:06+00:00

Is it possible to declare an instance of a generic without knowing the type

  • 0

Is it possible to declare an instance of a generic without knowing the type at design-time?

Example:

Int i = 1; List<typeof(i)> list = new List<typeof(i)>(); 

where the type of i could be anything, instead of having to do:

List<int> list = new List<int(); 
  • 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. 2026-05-10T23:10:06+00:00Added an answer on May 10, 2026 at 11:10 pm

    If you don’t know the type at compile-time, but you want the actual type (i.e. not List<object>) and you’re not in a generic method/type with the appropriate type parameter, then you have to use reflection.

    To make the reflection simpler, I’ve sometimes introduced a new generic type or method in my own code, so I can call that by reflection but then just use normal generics after that. For example:

    object x = GetObjectFromSomewhere(); // I want to create a List<?> containing the existing // object, but strongly typed to the 'right' type depending // on the type of the value of x MethodInfo method = GetType().GetMethod('BuildListHelper'); method = method.MakeGenericMethod(new Type[] { x.GetType() }); object list = method.Invoke(this, new object[] { x });  // Later  public IList<T> BuildListHelper<T>(T item) {     List<T> list = new List<T>();     list.Add(item);     return list; } 

    Of course, you can’t do an awful lot with the list afterwards if you don’t know the type… that’s why this kind of thing often falls down. Not always though – I’ve used something like the above on a few occasions, where the type system just doesn’t quite let me express everything I need to statically.

    EDIT: Note that although I’m calling Type.GetMethod in the code above, if you were going to execute it a lot you’d probably want to just call it once – after all, the method isn’t going to change. You may be able to make it static (you could in the case above) and you probably want to make it private too. I left it as a public instance method for the simplicity of the GetMethod call in sample code – you’d need to specify the appropriate binding flags otherwise.

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

Sidebar

Ask A Question

Stats

  • Questions 72k
  • Answers 72k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer That form of character access is not part of the… May 11, 2026 at 1:30 pm
  • added an answer You can't declare an array using a variable so Byte… May 11, 2026 at 1:30 pm
  • added an answer For that to happen you need your jar to be… May 11, 2026 at 1:30 pm

Related Questions

No related questions found

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.