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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        43 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        20 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        29 views
        1 like
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        46 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        38 views
        0 likes
        Last Post CarlTrading  
        Working...
        X