Translate Linq Aggregate from VB to C#
Hi,
In the Linq query below, values is an array of double.
Could some please translate this VB.Net Linq query into C#:
Dim Aggreg = Aggregate v In values _
Into Count(), _
Sum(), _
Sum_Of_Squares = Sum(v * v)
Thank you,
Scott