다음을 통해 공유


시퀀스를 배열로 변환

ToArray를 사용하여 시퀀스에서 배열을 만듭니다.

예시

다음 예제에서는 ToArray를 사용하여 배열에 대한 쿼리를 즉시 평가하고 세 번째 요소를 가져옵니다.

var custQuery =
    from cust in db.Customers
    where cust.City == "London"
    select cust;
    Customer[] qArray = custQuery.ToArray();

Dim custQuery = _
    From cust In db.Customers _
    Where cust.City = "London" _
    Select cust
Dim qArray() As Customer = custQuery.ToArray()

참고 항목