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 CaptainJack, 05-29-2026, 05:09 AM
        0 responses
        237 views
        0 likes
        Last Post CaptainJack  
        Started by CaptainJack, 05-29-2026, 12:02 AM
        0 responses
        152 views
        0 likes
        Last Post CaptainJack  
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        163 views
        1 like
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        246 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        199 views
        0 likes
        Last Post CarlTrading  
        Working...
        X