Compare commits
3 commits
0ff9cfd8fb
...
246d15de38
Author | SHA1 | Date | |
---|---|---|---|
246d15de38 | |||
165e0c5c26 | |||
60f548d88d |
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
# `Geekeey.Extensions.Result`
|
# `Geekeey.Extensions.Result`
|
||||||
|
|
||||||
Result is a .NET library which provides a Result<T> type for representing the outcome of operations in C#. It offers a
|
A .NET library provides a Result<T> type for representing the outcome of operations in C#. It offers a clean and concise
|
||||||
clean and concise way to handle success and failure scenarios, promoting better error handling and code readability.
|
way to handle success and failure scenarios, promoting better error handling and code readability.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
@ -68,4 +68,4 @@ _ = await Prelude.Try(() => File.ReadAllLines("i_do_not_exist.txt"))
|
||||||
var results = await Task.WhenAll(list.Select(DoSomeThing).ToArray());
|
var results = await Task.WhenAll(list.Select(DoSomeThing).ToArray());
|
||||||
return results.Join();
|
return results.Join();
|
||||||
});
|
});
|
||||||
```
|
```
|
Loading…
Reference in a new issue