BasicAggregateOperators.Program.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : void
args string
return void
        static void Main(string[] args)
        {
            Sum();
            SumWithNulls();
            Count();
            CountWithPredicate();
            Average();
            MaxAndMin();
            MaxWithSelector();
            MaxByAndMinBy();
            AggregateAndScan();
            SecondLargestItemWithAggregate();
            Console.ReadLine();
        }