Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Range checking in a Set

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Range checking in a Set

    Hello:

    in the Properties section, I know how to check for minimum or maximum values in a set

    i.e.

    set { inputNumber = Math.Min(3, value); }
    or
    set { inputNumber = Math.Max(1, value); }

    but what is the code to only allow a specific range, i.e. 1-5?

    Can't seem to get the syntax correct.

    Thanks
    Last edited by Cheech; 07-21-2016, 10:42 PM.

    #2
    Code:
    set { inputNumber = Math.Max(1,Math.Min(5,value)); }

    Comment


      #3
      Perfect

      Duh, I should have known that one.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by kinfxhk, 07-14-2026, 09:39 AM
      0 responses
      127 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 10:18 AM
      0 responses
      105 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 09:50 AM
      0 responses
      85 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 07:21 AM
      0 responses
      105 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-11-2026, 02:11 AM
      0 responses
      86 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X