dotnet-api-docs
dotnet-api-docs copied to clipboard
.NET API reference documentation (.NET 5+, .NET Core, .NET Framework)
### Type of issue Missing information ### Description I find the documentation for `UnmanagedCallersOnlyAttribute.CallConvs` to be unintentionally misleading. It specifies that the valid values are `CallConv*` types. However, `CallConvSuppressGCTransition` is...
### Type of issue Crazy, Incorrect Remarks ### Description The remarks are incorrect and would be very weird *if they were correct*. 🚧 THE REMARKS SHOULD BE REMOVED. 🚧 The...
When trying to render raw html into a razor page, most people just use HtmlString type to convert a string into full html. When I wanted to do this in...
Domain
### Type of issue Code doesn't work ### Description using System; using System.Reflection; using System.Threading; class Module1 { public static void Main() { // Get and display the friendly name...
_This issue has been moved from [a ticket on Developer Community](https://developercommunity.visualstudio.com/t/Missing-Regex-Class-Orientation-Material/10723811)._ --- [severity:It's more difficult to complete my work] System.Text.RegularExpressions.Regex is a HUGELY important class. But there is ZERO orientation...
### Describe the issue or suggestion According to the doc page for [SuppressGCTransitionAttribute](https://learn.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.suppressgctransitionattribute?view=net-9.0), this attribute only applies to methods that were decorated with **DllImportAttribute**. I assume this attribute also applies...
### Type of issue Typo ### Description The complexity analysis seems of to me. Intersecting two sorted lists with the same comparator can be done in O(n*log(m)) time when iterating...
This was updated in https://github.com/dotnet/runtime/pull/328/
### Type of issue Missing information ### Description The remarks for both [Enumerable.Append](https://learn.microsoft.com/en-us/dotnet/api/system.linq.enumerable.append?view=net-9.0#remarks) and [Enumerable.Prepend](https://learn.microsoft.com/en-us/dotnet/api/system.linq.enumerable.prepend?view=net-9.0#remarks) can be misleading. It currently states for both: > This method does not modify the...
### Type of issue Missing information ### Description The top-level declaration for type `System.String` is, as follows: ```csharp public sealed class String : ICloneable, IComparable, IComparable, IConvertible, IEquatable, IParsable, ISpanParsable,...