Edit: Problem is solved by updating.
Resharper is really annoying me and marking code that is 100% correct as wrong, it keeps wanting me to change an Action to an Action<T1,T2...Tn> when this obviously incorrect. It flashes everytime I type something so is really distracting. Is there a way to disable resharper totally inbetween two comments? Or how do you disable only for this warning?

Edit: There is no hint on the left to disable this using comments.
The menu that pops up when you press Alt+Return:

Edit: I found a solution, just wrap the offending lines of code in #region RFail and #endregion statements. Not ideal though.