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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:25:05+00:00 2026-05-11T08:25:05+00:00

Is there a succinct way to represent a bounded numeric value in .NET 3.5?

  • 0

Is there a succinct way to represent a bounded numeric value in .NET 3.5?

By this I mean a value such as a percentage (0 – 100) probability (0 – 1) or stock level (0 or above).

I would want a ArgumentOutOfRangeException (or equivalent) to be thrown if an out-of-range assignment was attempted. I would also want static MaxValue and MinValue properties to be available.

It was suggested in a comment to another SO question that this was a good use of a struct.

  • 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-11T08:25:06+00:00Added an answer on May 11, 2026 at 8:25 am

    I don’t think there is a built-in way like the Ada ‘range’ keyword, but you could easily create a type like RestrictedRange<T> that had a min and max value along with the current value:

    public class RestrictedRange<T> where T : IComparable {             private T _Value;      public T MinValue { get; private set; }     public T MaxValue { get; private set; }      public RestrictedRange(T minValue, T maxValue)         : this(minValue, maxValue, minValue)     {     }      public RestrictedRange(T minValue, T maxValue, T value)     {         if (minValue.CompareTo(maxValue) > 0)         {             throw new ArgumentOutOfRangeException('minValue');         }          this.MinValue = minValue;         this.MaxValue = maxValue;         this.Value = value;     }      public T Value     {         get         {             return _Value;         }          set         {             if ((0 < MinValue.CompareTo(value)) || (MaxValue.CompareTo(value) < 0))             {                 throw new ArgumentOutOfRangeException('value');             }             _Value = value;         }     }      public static implicit operator T(RestrictedRange<T> value)     {         return value.Value;     }              public override string ToString()     {         return MinValue + ' <= ' + Value + ' <= ' + MaxValue;     } } 

    Since there is an implicit conversion to automatically get the value, this will work:

    var adultAge = new RestrictedRange<int>(18, 130, 21); adultAge.Value++; int currentAge = adultAge; // = 22 

    In addition, you can do things like this

    var stockLevel = new RestrictedRange<int>(0, 1000) var percentage = new RestrictedRange<double>(0.0, 1.0); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 112k
  • Answers 112k
  • 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
  • Editorial Team
    Editorial Team added an answer Look at the application cache in html5, that does basically… May 11, 2026 at 9:58 pm
  • Editorial Team
    Editorial Team added an answer Thanks to a quick search on google, I found the… May 11, 2026 at 9:58 pm
  • Editorial Team
    Editorial Team added an answer I don't think you can, you should write your own… May 11, 2026 at 9:58 pm

Related Questions

Is there a succinct way to retrieve a random record from a sql server
Is there a more succinct way to define a class in a namespace than
I was wondering if there is a cleaner (more succinct) way to do what
I'm working with a map in Scala and doing the usual if there's no

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.