I want to update this code to use OrderBy instead of Sort.
protected void Sort()
{
m_Items.Sort(new Comparison<PayArrayItem>(
delegate (PayArrayItem x, PayArrayItem y)
{
return x.TransactionDate.CompareTo(y.TransactionDate);
}
));
}