use Linq Sum to sum an array

image_pdfimage_print
   
 


using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using System.Reflection;

public class MainClass{
   public static void Main(){
            int[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
            var query = numbers.Sum();
   }
}

    


This entry was posted in LINQ. Bookmark the permalink.