public class Example
{
public static void Main()
{
Console.Write("<< Enumerable.Count 출력 예제 >> \n");
string[] codes = { "codeA", "codeB", "codeC", "codeD"};
try
{
int numberOfCodes = codes.Count();
Console.WriteLine("There are {0} Codes in the collection.", numberOfCodes);
}
catch (OverflowException)
{
}
Console.WriteLine(System.Environment.NewLine);
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}
Enumerable.Count 는 요소의 Count를 가져오는 메서드입니다.