I have a Match activity that outputs an IEnumerable. Would like to avoid using another for each activity just to have its values in a List.
I’m trying it like this: TransactionAccountMatches.Cast().Select(match => match.Value).ToList()
But it doesn’t work and I’m not too familiar with C# or .NET or all right VB.NET…
Here are some links bellow that show the direction, but I’m too stupid to apply them for my need…