Skip to content

Instantly share code, notes, and snippets.

@dkudelko
Created August 26, 2016 11:05
Show Gist options
  • Save dkudelko/150180788cd50f76ecba30ef4e658836 to your computer and use it in GitHub Desktop.
Save dkudelko/150180788cd50f76ecba30ef4e658836 to your computer and use it in GitHub Desktop.
Enumerator.cs
var enumerator = list.GetEnumerator();
while (enumerator.MoveNext())
if (enumerator.Current.Id.Equals(customId))
{
enumerator.Current.DateModified = DateTime.Now;
//... smght else
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment