Represents a collection of arbitrary objects.
Namespace: MindFusion.Common.Collections
File: ObservableCollection.js
JavaScript Copy Code |
---|
// class |
The following code creates an ObservableCollection with products.
JavaScript Copy Code |
---|
var product1 = new Object(); var product2 = new Object(); List products = new List([product1, product2, ...]); |
MindFusion.Common.Collections.IEnumerable
MindFusion.Common.Collections.List
MindFusion.Common.Collections.ObservableCollection