Skip to content

Instantly share code, notes, and snippets.

@simpleprogrammer-shared
Created July 11, 2016 09:39
Show Gist options
  • Save simpleprogrammer-shared/67d54a121152b2a545d7eefa5bea8faa to your computer and use it in GitHub Desktop.
Save simpleprogrammer-shared/67d54a121152b2a545d7eefa5bea8faa to your computer and use it in GitHub Desktop.
Wrapping Callbacks 3
public static void ExecuteAsync(Action<Action<Result>> asyncMethod, Action callback)
{
ShowProgressDialog();
Action wrappedCallback = (r =>
{
DismissProgressDialog();
callback(r);
}
asyncMethod(wrappedCallback);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment