How would you write a delegate named ResultCallback with an int parameter named responseCode?
public delegate void ResultCallback(int responseCode); Official documentation: Delegates
public void delegate ResultCallback<int responseCode>;
public delegate void ResultCallback<(int) responseCode>;
public delegate ResultCallback(int responseCode);