Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
Sub DisplayCustomersForRegion(ByVal customers As List(Of Customer), |
|
ByVal region As String) |
|
|
|
Dim customersForRegion = From cust In customers |
|
Where cust.Region = region |
|
|
|
For Each cust In customersForRegion |
|
Console.WriteLine(cust.CompanyName) |
|
Next |
|
End Sub |
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.