https://github.com/lavspent/lavspent.taskenumerableextensions
https://github.com/lavspent/lavspent.taskenumerableextensions
async enumerable extension linq methods task
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lavspent/lavspent.taskenumerableextensions
- Owner: lavspent
- License: mit
- Created: 2017-03-31T23:42:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-05T23:36:16.000Z (about 9 years ago)
- Last Synced: 2025-08-01T08:02:34.231Z (11 months ago)
- Topics: async, enumerable, extension, linq, methods, task
- Language: C#
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lavspent.TaskEnumerableExtensions
Adds async Linq extensions to `Task>`.
## Install
```
nuget.exe install Lavspent.TaskEnumerableExtensions
```
## Use
Instead of:
```c#
var first = (await GetListAsync()).First();
```
you can:
```c#
var first = await GetListAsync().First();
```