1
vote
1answer
240 views
CastException attempting to call Action<KeyValuePair<>> delegate asynchronously
I can't seem to figure out why I am getting an InvalidCastException running the following code:
var item = new KeyValuePair<string, string>("key", "value");
Action<KeyValu …
