Here is a tip for you. If you are doing a simple foreach against a collection like this:
foreach (var se in this._scheduledItems)
{
se.Verified = false;
}
You can easily change it to one line using Array.ForEach and a Lambda expression:
Array.ForEach(this._scheduledItems.ToArray(), p => p.Verified = false);
Tip By: David McCarter
Discover more from dotNetTips.com
Subscribe to get the latest posts sent to your email.
