private JsonEqualsConstraint SetArrayStrategy <TStrategy>() where TStrategy : IJArrayStrategy, new()
 {
     arrayStrategy = new TStrategy().WithTokenDiffer(Diff);
     return(this);
 }
 private HasJsonPropertiesConstraint SetArrayStrategy <TStrategy>() where TStrategy : IJArrayStrategy, new()
 {
     arrayStrategy = new TStrategy();
     return(this);
 }