context[$"processing file - \"{file.Name}\""] = () =>{}
I would like to persist the underscores in the filename so would like to escape out the underscore as follows:
context[$"processing file - \"{file.Name.Replace("_","\\")}\""] = () => {}
Any options?