in AMP/Collections/SortedObservableCollection.cs [138:167]
protected override void InsertItem(int index, T item)
{
base.InsertItem(index, item);
if (_funcInt != null)
{
Sort(_funcInt, _sortDirection);
return;
}
if (_funcString != null)
{
Sort(_funcString, _sortDirection);
return;
}
if (_funcDate != null)
{
Sort(_funcDate, _sortDirection);
return;
}
if (_funcBool != null)
{
Sort(_funcBool, _sortDirection);
return;
}
if (_funcTime != null)
{
Sort(_funcTime, _sortDirection);
return;
}
}