docs
                                
                                 docs copied to clipboard
                                
                                    docs copied to clipboard
                            
                            
                            
                        This repository contains .NET Documentation.
In Sub Test() replace Dim baseComparer As IEqualityComparer(Of BaseClass) = New BaseComparer with Dim baseComparer As IEqualityComparer(Of BaseClass) = New BaseComparer_**(Of BaseClass)**_ --- #### Document Details ⚠ *Do not edit...
In the example `GracePeriodManagerService` the line `_logger.LogDebug($"GracePeriod background task is stopping.");` is never hit because Task.Delay throws an TaskCancelledException. You don't see this exception, but when you add a try...
Hello, I haven't seen any mention about what happens when an exception is thrown during the _expr_ evaluation. Can the doc be updated to cover this case ? Here is...
I noticed something in the sample code at https://docs.microsoft.com/en-us/dotnet/csharp/tutorials/intro-to-csharp/list-collection?tutorial-step=1 The example is using the `var` keyword inside the foreach statement. But the C# coding conventions [here](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/inside-a-program/coding-conventions#implicitly-typed-local-variables) claim that implicit typing...
## Summary This provides a walk-through for the Custom marshaller sample found at https://github.com/dotnet/samples/pull/5315 /cc @jkoritzinsky @elinor-fung @gewarren
[Enter feedback here] Per article: "When using a structure, you can only read the values of members or invoke methods, and you get an error if you try to assign...
As observed via https://stackoverflow.com/questions/63923968, the claim that: > In some cases, unsafe code may increase an application's performance by removing array bounds checks. ... can me read as "it makes...
It appears that inside character groups, the hyphen can be included in the group by being escaped using backslash: `\-`. However, this still doesn't allow it to be used as...
[This page](https://docs.microsoft.com/en-us/dotnet/core/tools/csproj#authors) describes the `` property like this: > A semicolon-separated list of packages authors, matching the profile names on nuget.org. These are displayed in the NuGet Gallery on nuget.org...
`Public Function MyFun(Optional filters() As (String, String) = New (String, String)() { } ) As Boolean` returns BC30059, as well as when specifying the array size. --- #### Document Details...