I have
myObjects = List(of myObject)
myObject has
Public Property myProperty as string
Is there a framework method to produce
myObjectProperties = List(of string)
from each myObject.myProperty in myObjects?
Obviously I can easily create one. I’m just wondering if there’s a framework solution.
Linq:
(sorry, it’s C# and not VB.NET, but you are just talking about .NET …)