find the max number in an array csharp

Code Example - find the max number in an array csharp

                
                        // Find the max number of this Array using C# build in function
WriteLine("Find the max number of this Array using C# build in function" + Environment.NewLine+ "{ 1,2,3,4,5,6,7,8,9}");
int[] array = new[] { 1,2,3,4,5,6,7,8,9};
var maxNumber = array.Max();
WriteLine(%%%~COMPRESS~PRE~0~%%%quot;Max Number Of this Array:{maxNumber}");
                    
                
 

csharp array max

                        
                                ----------------------------------------------------
  HIGHEST
----------------------------------------------------
var highest 0;
var index;
var x = 0;
int[] arry = new int[]{1,2,3,4,5,6,7,8};

foreach (dynamic i in arry)
{
  if (i > highest){ highest = i; index = x; }
  x++;
}
----------------------------------------------------
  OR
----------------------------------------------------
using System.Linq;

int maxValue = anArray.Max();
----------------------------------------------------

  
  
  
----------------------------------------------------
  LOWEST
----------------------------------------------------
var highest = 100000000000;
var index;
var x = 0;
int[] arry = new int[]{1,2,3,4,5,6,7,8};

foreach (dynamic i in arry)
{
  if (i < highest){ highest = i; index = x; }
  x++;
}
----------------------------------------------------
                            
                        
 

Related code examples