1- <IEnumerable<int>> exceptionFunction = () => list1.Except(list2);
2-
Action displayList = () => exceptionFunction()
.ToList()
.ForEach(i => Debug.WriteLine(i));
In the code above I am able to translate line 1 to VB with no problem.
Everything I try to convert line 2. gives me an error that no value is returned.
Is this a VB limitation with Lambdas?