Skip to content

Instantly share code, notes, and snippets.

@tomwis
Last active October 1, 2017 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomwis/b741d516f07099a87ef203aee8cd4728 to your computer and use it in GitHub Desktop.
Save tomwis/b741d516f07099a87ef203aee8cd4728 to your computer and use it in GitHub Desktop.
public RelayCommand SomeCmd => new RelayCommand(async () =>
{
// ...
});
public RelayCommand<string> WithParameterCmd => new RelayCommand<string>(async str =>
{
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment