Would be nice to do like this: ``` csharp var result = await this.proxy.Run(x => x.DoSomething()); ``` instead of ``` csharp object result = null; await this.proxy.Use(x => { result = x.DoSomething(); }); ```
Would be nice to do like this:
instead of