I have expected and actual responses that look like JSON objects by default. In my case there are two lists. I have to verify that this two lists have at list one the same element.
Function should be look like:
(expectedResponse, actualResponse) => ((List<Question>)actualResponse.Body).Should()
.NotIntersectWith(((List<Question>)expectedResponse.Body))