Code sample
If you have access to the repo and to the documentation in particular, it becomes possible pull out the piece of information that is currently of interest in an easy-to-read form. As a user, I am m...
If you have access to the repo and to the documentation in particular, it becomes possible pull out the piece of information that is currently of interest in an easy-to-read form. As a user, I am m...
It seems to me that apart from test nothing else is needed for complete understanding. tests: https://github.com/dotnet/runtime/tree/main/src/libraries/System.Linq/tests The query should be ex...
Operation levels prevent and regulate the ability to perform certain operations in parallel on one data array. For example, if a certain isolation level is set, until a transaction is completed by ...
Microsoft opinion in 2012 г. WARNING: This post goes deep into an advanced area of .NET that most developers never need to think about. This is the opinion of a great developer, Microsoft employee...
To understand await/async try debug the following code. You will see that await automatically call the GetAwaiter() of class implementing INotifyCompletion. And then CLR automatically calls IsCom...
For class and members [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] inside a method #pragma warning disable...
If we have only several endpoints for requests - use httpclient, define address, base address, path, query, get a response and deserialize it into model. Pattern https://github.com/dotnet/d...
That way you will receive a more strict warning that will look like an error. <MSBuildTreatWarningsAsErrors>True</MSBuildTreatWarningsAsErrors> JetBrain Rider displays Succeeded: Fals...
It’s interesting to look error descriptions through your phone in idle time and try on all sorts of mistakes for yourself. Warning messages https://learn.microsoft.com/bs-latn-ba/dotnet/csha...
There only two exports type: pfx and pem https://github.com/dotnet/aspnetcore/blob/a450cb69b5e4549f5515cdb057a68771f56cefd7/src/Shared/CertificateGeneration/CertificateExportFo...