Represents an array of arbitrary objects.
Namespace: MindFusion.Common.Collections
File: List.js
JavaScript Copy Code |
---|
// class |
The following code creates a List 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