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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:57:44+00:00 2026-05-17T23:57:44+00:00

I want to restrict the possible types N can take-on using a constraint. I

  • 0

I want to restrict the possible types N can take-on using a constraint. I wish to restrict N to be either a int or a decimal.

public static Chart PopulateInto<T, N>(List<T> yAxis, List<N> xAxis) where N : int, decimal
{
    // Do stuff here
}

Any help appreciated…

  • 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-17T23:57:45+00:00Added an answer on May 17, 2026 at 11:57 pm

    Unfortunately, it is not possible to specify generic type constraints that only allow specific value types. More to the point, it wouldn’t make much sense even if it was allowed.

    You’re allowed to specify a class as a generic constraint but this is because you can inherit from classes, the constraint thus sets the minimum threshold of what types you’re allowed to use.

    If this was allowed for value types, where you cannot inherit from those types, you would effectively limit yourself to only that type.

    Thus you cannot do this, but you have a few alternatives:

    • You can declare it without the constraint, and handle the problem at runtime. I would not recommend this way
    • You can declare overloads that take the specific types you’re interested in.

      Since you only have two such types this is what I would recommend doing.

    Here are the overloads you would declare:

    public static Chart PopulateInto<T>(List<T> yAxis, List<int> xAxis)
    {
        // Do stuff here
    }
    
    public static Chart PopulateInto<T>(List<T> yAxis, List<decimal> xAxis)
    {
        // Do stuff here
    }
    

    Now, additionally, if your handling of those values doesn’t really rely on the numeric quality of those types, you just want to limit which types you can handle, then you can always declare your original method as well, privately, and call this method from your overloads. This would still limit your code to only allowing int or decimal, publicly, but your implementation would still be generic. Without knowing exactly what “Do stuff here” entails it is impossible to tell if this is a viable option or not but here is the code anyway:

    public static Chart PopulateInto<T>(List<T> yAxis, List<int> xAxis)
    {
        return PopulateInto<T, int>(yAxis, xAxis);
    }
    
    public static Chart PopulateInto<T>(List<T> yAxis, List<decimal> xAxis)
    {
        return PopulateInto<T, decimal>(yAxis, xAxis);
    }
    
    private static Chart PopulateInto<T, N>(List<T> yAxis, List<N> xAxis) where N : struct
    {
        // Do stuff here
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to restrict the users from using the links in a UIWebView. Hence,
I want to restrict entry of new item into sharepoint calendar list with the
I have a jQuery datepicker that I want to restrict non work days -
I have a series of interlinked web pages, and I want to restrict access
This question asks how to restrict for a whole server. I just want to
I want to assign the decimal variable "trans" to the double variable "this.Opacity". decimal
I want to be able to run WSGI apps but my current hosting restricts
Want to know what the stackoverflow community feels about the various free and non-free
Want my FireFox at work to be in sync with my FireFox at my
I want to loop over the contents of a text file and do a

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.