You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you explain why do you think that method should not be treated as asynchronous when it return ValueTask<T>? ValueTask<T> is basically the same as Task<T> just with less allocations.
Could you explain why do you think that method should not be treated as asynchronous when it return ValueTask<T>? ValueTask<T> is basically the same as Task<T> just with less allocations.
It's actually the opposite, the problem is that RCS1047 doesn't understand ValueTask as async and tells you to remove the async suffix.
Product and Version Used:
Latest
Steps to Reproduce:
Actual Behavior:
Expected Behavior:
The text was updated successfully, but these errors were encountered: