show/hide this revision's text 2 deleted 11 characters in body

It's a bit more idiomatic to write the following instead of using the delegate keyword. It doesn't change the underlying functionality though.

CheckValues.Add( () => method1() );

Also, I find it more readable to rewrite the ForEach as the following

CheckValues = CheckValues.
  Select(x => x()).
  Where(wh => wh != WhatHappened.Nothing ). 
  ForEach( wh => returnValue.Add(wh))ToList();
show/hide this revision's text 1

It's a bit more idiomatic to write the following instead of using the delegate keyword. It doesn't change the underlying functionality though.

CheckValues.Add( () => method1() );

Also, I find it more readable to rewrite the ForEach as the following

CheckValues.
  Select(x => x()).
  Where(wh => wh != WhatHappened.Nothing ). 
  ForEach( wh => returnValue.Add(wh));