Is there a way to do this without iterating through the List and adding the items to the ObservableCollection?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
No, there is no way to directly convert the list to an observable collection. You must add each item to the collection. However, below is a shortcut to allow the framework to enumerate the values and add them for you.
|
||||
|
|
|
I'm late but I want to share this interesting piece for converting a list into a ObservableCollection if you need a loop:
You could pass an collection to the ObservableCollection constructor:
Now you have to translate these to VB.NET :) |
||||
|
to clarify what Junior is saying (with an added example if you're using LINQ that returns an IEnumerable):
|
||||
|
|
|
||||
|
|
|
|||
|
|