In other words is there any chance that a dxBrush, or an array of dxBrush, allocated inside OnRenderChanged() could change and become invalid inside a call to onRender(), and therefore trigger an exception ?
And also does this code
if (submissionAccount.Positions.Where(o => o.Instrument == Instrument).Count() > 0)
{
accountPosition = submissionAccount.Positions.Where(o => o.Instrument == Instrument).Last();
}
Thank You

Comment