Added field keyword.

This commit is contained in:
Fredric Silberberg 2021-09-02 17:46:30 -07:00
parent c0536b57c7
commit fbbdf86e8a
No known key found for this signature in database
GPG key ID: BB6144C8A0CEC8EE

View file

@ -4,15 +4,16 @@
1. C# 11 Initial Triage
1. [Generic attributes](#generic-attributes)
2. [List patterns](#list-patterns)
3. [Static abstracts in interfaces](#static-abstracts-in-interfaces)
4. [Declarations under `or` patterns](#declarations-under-or-patterns)
5. [Records and initialization](#records-and-initialization)
6. [Discriminated unions](#discriminated-unions)
7. [Params `Span<T>`](#params-spant)
8. [Statements as expressions](#statements-as-expressions)
9. [Expression trees](#expression-trees)
10. [Type system extensions](#type-system-extensions)
2. [`field` keyword](#field-keyword)
3. [List patterns](#list-patterns)
4. [Static abstracts in interfaces](#static-abstracts-in-interfaces)
5. [Declarations under `or` patterns](#declarations-under-or-patterns)
6. [Records and initialization](#records-and-initialization)
7. [Discriminated unions](#discriminated-unions)
8. [Params `Span<T>`](#params-spant)
9. [Statements as expressions](#statements-as-expressions)
10. [Expression trees](#expression-trees)
11. [Type system extensions](#type-system-extensions)
## Quote(s) of the Day
@ -37,6 +38,12 @@ crash if it encounters an assembly with a generic attribute, even if the type wi
tool with issues. We'll need to work with them and others to make sure the ecosystem won't crash around generic attributes before we can remove
the preview flag.
### `field` keyword
https://github.com/dotnet/csharplang/issues/140
Didn't quite have time for this in 10. Let's get it done!
### List patterns
https://github.com/dotnet/csharplang/issues/3435