Sven Hübner
Sven Hübner
I have not benchmarked it, but it seems like using a threadpool Task for every single message sent in RpcBuffer is also detrimental to performance. AFAIK, it could even [lead...
Maybe I will do so myself. It seems like an innocuous change. As long as we are confident that the automated tests discover errors, this should be quick. Maybe threadpool...
@spazzarama did you notice my PR from 3 days ago?
> Feel free to replace the current implementation if you see your version achieves the same thing as it does appear to be a simpler implementation. The changes @Christian-Schl made...
@Christian-Schl I never claimed that allocations are a problem. I just answered a question. It seems to me that the actual change in my PR (using ThreadPool.RegisterWaitForSingleObject instead of creating...
> > This is nonsense, since there is no such thing (yet) as a readonly method. > > It's not that non-sensical, because C# has this feature for almost 2...
> I think the 'Error List' in Visual Studio should have a full stacktrace of the issue. That is exactly my point, it does not. And I have not found...
I do not think they will fix this. Migrating to the SDK style project format (independent of target framework) should be a workable solution, though. Or use [nukeeper](https://github.com/NuKeeperDotNet/NuKeeper).
S2589 will trigger on `null`, too, e. g. ```csharp int? foo = (int?)6 ?? null; ```
This has nothing to do with either `InfluxDBClient` or the URL, but only `ApiClient`. The class `ApiClient` is `public` as is the `RestClient` property. This makes it part of the...