We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SuperLinq.Async
For a majority of methods, we can inherit doc from SuperEnumerable matching methods. There are two ways we can do this:
SuperEnumerable
<inheritdoc/>
CancellationToken
SuperLinq
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For a majority of methods, we can inherit doc from
SuperEnumerable
matching methods. There are two ways we can do this:<inheritdoc/>
. If we use this method, we will be unable to add documentation forCancellationToken
parameters, due to CS1573, CS1712 warnings shouldn't appear when inheriting docs dotnet/roslyn#40325. However, this approach is simplest.SuperLinq
and apply them toSuperLinq.Async
via partial methods.The text was updated successfully, but these errors were encountered: