I am trying to invoke a function for every member of a list, but pass additional parameters to the delegate.
if I have a list called documents
documents
Use lambda expression:
string content = "Other parameter value"; documents.ForEach(x => CallAnotherFunction(x, content));