Is there a way to do this without iterating through the List and adding the items to the ObservableCollection?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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):
|
||||
|
|
|
||||
|
|
|
|||
|
|