Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

The maximum of two variables

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

    The maximum of two variables

    Is there a simple function that can be used to compare two (double) variables and store the maximum (the larger of the two) value for later reference?

    The structure I'm using to achieve this currently is a little long in the tooth:
    If (variable1 > variable2)
    {
    variable3 = variable1;
    }
    else
    {
    variable3 = variable2;
    }

    Thanks
    Shannon

    #2
    you could try

    Math.Max(variable1,variable2);

    Comment


      #3
      Math.Max is the best answer.

      That said, the second best would be:

      variable3 = variable1>variable2 ? variable1 : variable2;

      The original post (if) indicates... the need to read a good book about C#

      Comment


        #4
        zweistein & NetTecture,

        Thanks for your advice. It worked a treat.

        Shannon

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        577 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        334 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        553 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        551 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X