12
Come chiamare un metodo asincrono da un getter o setter?
Quale sarebbe il modo più elegante per chiamare un metodo asincrono da un getter o setter in C #? Ecco alcuni pseudo-codici per aiutare a spiegarmi. async Task<IEnumerable> MyAsyncMethod() { return await DoSomethingAsync(); } public IEnumerable MyList { get { //call MyAsyncMethod() here } }