Note
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
Use ToArray to create an array from a sequence.
Example
The following example uses ToArray to immediately evaluate a query into an array and to get the third element.
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()