Abc.NCrafts.Quizz.Performance.Questions._008.Answer1.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // begin
            short max = 0;
            for (var index = 0; index < _values.Length; index++)
            {
                max = Math.Max(max, _values[index]);
            }
            // end
            Logger.Log("Max: {0}", max);
        }
    }