controlflow / resharper-postfix

ReSharper Postfix Templates plugin
MIT License
127 stars 12 forks source link

.return is not always available when needed #43

Open controlflow opened 9 years ago

controlflow commented 9 years ago
var agent = new SimpleDelegateAgent((index, cancellationToken) =>
      {
        if (index == 0) throw new InvalidOperationException("YO");

        Task.FromResult(true).ret
      });

Delegate is of type Func<Task> :\