I was looking for a way to do this today and stumbled upon this post. Really, the only simple way I found to do it was to wrap Action within a new Action
var _actions = new ConcurrentDictionary>();
Action actionStr = s => Console.WriteLine(s);
var actionObj = new Action