Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions standard/normative-references.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ ISO/IEC 2382, *Information technology — Vocabulary*.

ISO/IEC 60559:2020, *Information technology — Microprocessor Systems — Floating-Point arithmetic*

*.NET API Documentation*, https://learn.microsoft.com/en-us/dotnet/api
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For C# 8, we should link to the .NET Core 3.1 version of the APIs. We should also remove the locale:

Suggested change
*.NET API Documentation*, https://learn.microsoft.com/en-us/dotnet/api
*.NET API Documentation*, https://learn.microsoft.com/dotnet/api/?view=netcore-3.1


The Unicode Consortium. The Unicode Standard, https://www.unicode.org/standard/standard.html
4 changes: 2 additions & 2 deletions standard/standard-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ It is expected that a conforming C# implementation will supply a significantly
## C.2 Standard Library Types defined in ISO/IEC 23271

> *Note:* Some `struct` types below have the `readonly` modifier. This modifier was not available
> when ISO/IEC 23271 was released, but is required for conforming implementations of this specification. *end note*
> when ISO/IEC 23271:2012 was released, but is required for conforming implementations of this specification. That modifier is, however, present in the .NET API Documentation for those types. *end note*

```csharp
namespace System
Expand Down Expand Up @@ -388,7 +388,7 @@ namespace System.Threading

## C.3 Standard Library Types not defined in ISO/IEC 23271

The following types, including the members listed, shall be defined in a conforming standard library. (These types might be defined in a future edition of ISO/IEC 23271.) It is expected that many of these types will have more members available than are listed.
The following types, including the members listed, shall be defined in a conforming standard library. These types are not defined in ISO/IEC 23271:2012, but might be defined in a future edition of that specification. Until that occurs, the definitions of those types can be obtained from the .NET API Documentation. It is expected that many of these types as defined there will have more members available than are required by a conforming C# implementaion.

A conforming implementation may provide `Task.GetAwaiter()` and `Task<TResult>.GetAwaiter()` as extension methods.

Expand Down