Task 方法不回傳任何東西的方法 發表於 2019-01-16 更新於 2020-11-08 分類於 程式語言 Task Return Nothing123456Task Method1(){ return Task.FromResult(0); // or // return Task.FromResult<object>(null);} 1234async Task Method1(){ // 啥都不用幹} 參考這邊StackOverflow : If my interface must return Task what is the best way to have a no-operation implementation?