David Arno
David Arno
- [ ] Target .NET 6 - [ ] Remove pattern matching functionality that C# 10 already supports - [ ] Remove wither functionality if withers feature covers this -...
It's only me that ever uses Succinc\ as the name of the page. It's difficult to type and its really highly affected nonsense when "SuccincT" works just as well. So...
[Async streams](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-8#asynchronous-streams) are a core 3.0-only feature. So in order to support this, I need to experiment with whether I can use something like: ```xml $(DefaultItemExcludes);src\Succinct\Core3.0\*.cs ``` to hide files...
```cs var result = someEmptyList.Match().To() .Empty().Do(0) .Result(); // result == 0 var list = new List{1}; var result = list.Match().To() .Empty().Do(0) .Single().Do(x => x) .Result(); // result == 1 var...
Currently, `StaticMethodMustNotBeVoid` reports an error on the `Main` entry-point method of an application. `Main` has to be void. Winform applications are decorated with `[STAThread]`, but this doesn't apply to console...