Support something line the following
state S {
async entry { return foo(); }
}
where foo returns a Task. This is slightly better in terms of performance than doing await foo(). Currently, the VS compiler will complain that the async entry method doesn't do an await.
Support something line the following
where
fooreturns aTask. This is slightly better in terms of performance than doingawait foo(). Currently, the VS compiler will complain that theasyncentry method doesn't do anawait.