I'm looking to use the HTML Bridge to send data currently in an ObservableCollection to some JavaScript. I'm assuming that this data would need to be in an array, rather than in an ObservableCollection, for it to be usable in JavaScript. Note: This assumption may be incorrect.
Silverlight doesn't seem to have the ToArray() function on its ObservableCollection class, so I was wondering if there's a nicer way to convert it into an array than iterating over the whole thing.