Troubleshooting Get List Info Activity

Statement is about LINQ

ListItem.Fields.ToDictionary(Function(x) x.Name, Function(x) x.Value)

ListItem.Fields
sends the Fields to the LINQ processing
ToDictionary
Transforms it to a Dictionary
Function(x) x.Name
the Lambda function - for taking the dictionary entry Key info
Function(x) x.Value
the Lambda function - for taking the dictionary entry Value info