CODEKILLER

반응형

> 요소의 수를 반환하는 메서드 Enumerable.Count

Enumerable.Count 메서드 사용하기.
Enumerable.Count 메서드 사용하기.

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를 가져오는 메서드입니다.

반응형

공유하기

facebook twitter kakaoTalk kakaostory naver band