I am new to using aspose email and cannot find a good example of how to order messages so that the newest ones are one top. Any help would be appreciated.
By the way I am using Pop3MessageInfoCollection -
I was able to find an answer that worked for me
Pop3MessageInfoCollection msgCollection = client.ListMessages();
MessagesGridView.DataSource = msgCollection.OrderByDescending(x => x.Date).ToList();
MessagesGridView.DataBind();
Hi Jane,