Skip to content

Instantly share code, notes, and snippets.

View madd0's full-sized avatar

Mauricio Díaz Orlich madd0

View GitHub Profile
using System;
using System.Threading.Tasks;
using System.Windows.Input;
namespace ImprovedDelegateCommand
{
public class AsyncDelegateCommand<T> : ICommand
{
private Func<T, bool> canExecute;
private Func<T, Task> execute;