IUltraList

StockSharp.Xaml.Charting.Model.DataSeries

Implements: IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable

Properties

ItemsArray
public T[] ItemsArray { get; }
value = iUltraList.ItemsArray

Gets the internal ItemsArray that this list wraps for direct unchecked access NOTE: The count of the ItemsArray may differ from the count of the List. Use the List.Count when iterating

Methods

AddRange
public void AddRange(IEnumerable<T> items)
iUltraList.AddRange(items)

Adds a range of items to the list

GetMaximum
public T GetMaximum()
result = iUltraList.GetMaximum()

Gets the maximum in the list

GetMinimum
public T GetMinimum()
result = iUltraList.GetMinimum()

Gets the minimum in the list

InsertRange
public void InsertRange(int index, IEnumerable<T> items)
iUltraList.InsertRange(index, items)

Inserts a range of items to the list

RemoveRange
public void RemoveRange(int index, int count)
iUltraList.RemoveRange(index, count)

Removes a range of items from the list

SetCount
public void SetCount(int setLength)
iUltraList.SetCount(setLength)

Forces the count of the list, in operations where we know the capacity in advance

setLength