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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T04:56:32+00:00 2026-06-10T04:56:32+00:00

I set up a method to pass a type as a parameter private void

  • 0

I set up a method to pass a type as a parameter

private void SomeMethod(System.Type type)
    {
        //some stuff
    }

Is there a way to enforce the type so that you can only pass in types that inherit from a specific base class?

  • 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-06-10T04:56:34+00:00Added an answer on June 10, 2026 at 4:56 am

    there are a lot of possibilities…

    instance-based:

    private void SomeMethod(object list) // total generic
    

    becomes

    private void SomeMethod(IEnumerable<object> list) // enumerable-generic
    

    or

    private void SomeMethod(List<object> list) // explicit list
    

    OR with generic functions:

    private void SomeMethod<T>() where T : MyType // << contraints
    {
        var theType = typeof(T);
    }
    

    call that:

    var xyz = SomeClass.SomeMethod<string>(); // for example
    

    for more info about constraints:
    http://msdn.microsoft.com/en-us/library/d5x73970(v=vs.80).aspx

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

Sidebar

Related Questions

I've written an method that does some graphics calculations. There, you can specify a
I am in the situation where I want to overwrite the set method that
I have a method set up that uses jquery form for a file upload
I want to create a method ( set ) that injects arguments into another
I used setCursor() method to set a cursor for JTable. But that cursor is
Is there a rule for knowing when one has to pass the generic type
I have a method, serializetoxml , that accepts an object of type obj1 as
I was wondering if there is any way to pass an array of objects
I ran this sql query in my database: update payments set method = 'paysafecard'
How to set compression method for SSL/TLS connection created with M2Crypto and TwistedProtocolWrapper

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.