Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
Dim customerIDs() = {"ALFKI", "VICTE", "BLAUS", "TRAIH"} |
|
|
|
Dim customerList = From cust In customers, custID In customerIDs |
|
Where cust.CustomerID = custID |
|
Select cust.CompanyName |
|
|
|
For Each companyName In customerList |
|
Console.WriteLine(companyName) |
|
Next |
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.