lechu445
lechu445
@TylerBrinkley do you now actually why `JsonConvert.DeserializeObject("null")` returns null? I think `"null"` is not a correct JSON regarding to JSON format docs. So, I think more sense has the method...
@EnricoMassone you are right, thank you for the answer. In [RFC 7159](https://tools.ietf.org/html/rfc7159) there is such definition: > JSON can represent four primitive types (strings, numbers, booleans, and null) and two...
@Clamibot there is a conflict, could you take a look at it?
@kevinchalet https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/pull/1768#issuecomment-965666920 of @brentschmaltz says that you can track progress on Json.NET in branch https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/tree/brentsch/SystemTextJson
ralated to https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/452
@SvenVMSW do you mean horizontal separator? If so, my answer is no. It's currently not possible to add horizontal separators.
If this GitHub issue is a feature request, we'll see what's demand from the community, as my feeling your problem is a niche
Hi @ViRuSTriNiTy, Thanks for the compliment 😃 > I try to use it with some simple async code and Serilog logging. But as soon as I have executed the first...
@joymon could you provide me a use case where async await support is needed?
It doesn't look like a real world use case. In the provided example, the warning can be fixed simply by removing `async` keyword from method declaration ```c# void TestMenu(string[] args)...