你會如何解決這個問題?我想回到這個集合:匿名類型集合
Public Function GetShippingMethodsByCarrier(ByVal Carrier As ShippingCarrier) As List(of ?)
Return Carrier.ShippingMethods.Select(Function(x) New With {.ID = x.ID, .Name = String.Format("{0} {1}", Carrier.Name, x.Description)})
End Function
謝謝!!
所以你將不得不做一個類來保存這兩個屬性,並返回這些列表? – Sam 2011-02-12 19:30:00
@Sam我建議這樣做。有解決方法,但我不會在這裏推薦他們。 – CodesInChaos 2011-02-12 19:33:09