> 숫자 값 시퀀스의 합을 계산하는 메서드.
public class Example
{
public static void Main()
{
Console.Write("<< Enumerable.Sum 출력 예제 >> \n");
float?[] points = { null, 0, 55.83F, null, 12.0F, 45.46F, 81.1F };
float? sum = points.Sum();
Console.WriteLine("Total : {0}", sum);
Console.WriteLine(System.Environment.NewLine);
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}