|
54 | 54 | "csharp-11.0/*.md", |
55 | 55 | "csharp-12.0/*.md", |
56 | 56 | "csharp-13.0/*.md", |
57 | | - "field-keyword.md" |
| 57 | + "field-keyword.md", |
| 58 | + "unbound-generic-types-in-nameof.md", |
| 59 | + "first-class-span-types.md" |
58 | 60 | ], |
59 | 61 | "src": "_csharplang/proposals", |
60 | 62 | "dest": "csharp/language-reference/proposals", |
|
679 | 681 | "_csharplang/proposals/csharp-13.0/partial-properties.md": "All partial properties and indexers", |
680 | 682 | "_csharplang/proposals/csharp-13.0/overload-resolution-priority.md": "Overload resolution priority tiebreaker attribute", |
681 | 683 | "_csharplang/proposals/field-keyword.md": "The `field` contextual keyword", |
| 684 | + "_csharplang/proposals/unbound-generic-types-in-nameof.md": "Unbound generic types in `nameof`", |
| 685 | + "_csharplang/proposals/first-class-span-types.md": "First-class span types", |
682 | 686 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 7.md": "C# compiler breaking changes since C# 10", |
683 | 687 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "C# compiler breaking changes since C# 11", |
684 | 688 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "C# compiler breaking changes since C# 12", |
|
800 | 804 | "_csharplang/proposals/csharp-13.0/partial-properties.md": "This proposal provides for partial properties and indexers, allowing the definition of a property or indexer to be split across multiple parts.", |
801 | 805 | "_csharplang/proposals/csharp-13.0/overload-resolution-priority.md": "This proposal introduces a new attribute, `OverloadResolutionPriorityAttribute`, that can be applied to methods to influence overload resolution.", |
802 | 806 | "_csharplang/proposals/field-keyword.md": "This proposal introduces a new keyword, `field`, that accesses the compiler generated backing field in a property accessor.", |
| 807 | + "_csharplang/proposals/unbound-generic-types-in-nameof.md": "This proposal introduces the ability to use unbound generic types such as `List<>` in `nameof` expressions. The type argument isn't required.", |
| 808 | + "_csharplang/proposals/first-class-span-types.md": "This proposal provides several implicit conversions to `Span<T>` and `ReadOnlySpan<T>` that enable library authors to have fewer overloads and developers to write code that resolves to faster Span based APIs", |
803 | 809 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 7.md": "Learn about any breaking changes since the initial release of C# 10 and included in C# 11", |
804 | 810 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "Learn about any breaking changes since the initial release of C# 11 and included in C# 12", |
805 | 811 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "Learn about any breaking changes since the initial release of C# 12 and included in C# 13", |
|
0 commit comments