|
77 | 77 | "csharp-8.0/readonly-instance-members.md",
|
78 | 78 | "csharp-8.0/null-coalescing-assignment.md",
|
79 | 79 | "csharp-8.0/async-streams.md",
|
| 80 | + "csharp-8.0/ranges.md", |
80 | 81 | "csharp-9.0/nullable-reference-types-specification.md",
|
81 | 82 | "csharp-9.0/nullable-constructor-analysis.md",
|
82 | 83 | "csharp-9.0/nullable-parameter-default-value-analysis.md",
|
|
622 | 623 | "_csharpstandard/standard/classes.md": "Classes",
|
623 | 624 | "_csharpstandard/standard/structs.md": "Structs",
|
624 | 625 | "_csharpstandard/standard/arrays.md": "Arrays",
|
| 626 | + "_csharpstandard/standard/ranges.md": "Indexes and ranges", |
625 | 627 | "_csharpstandard/standard/interfaces.md": "Interfaces",
|
626 | 628 | "_csharpstandard/standard/enums.md": "Enums",
|
627 | 629 | "_csharpstandard/standard/delegates.md": "Delegates",
|
|
635 | 637 | "_csharpstandard/standard/Bibliography.md": "Bibliography",
|
636 | 638 | "_csharplang/proposals/csharp-8.0/patterns.md": "Recursive pattern matching",
|
637 | 639 | "_csharplang/proposals/csharp-8.0/default-interface-methods.md": "Default interface methods",
|
638 |
| - "_csharplang/proposals/csharp-8.0/ranges.md": "Ranges and indices", |
639 | 640 | "_csharplang/proposals/csharp-8.0/using.md": "Pattern based using and using declarations",
|
640 | 641 | "_csharplang/proposals/csharp-9.0/covariant-returns.md": "Covariant return types",
|
641 | 642 | "_csharplang/proposals/csharp-9.0/extending-partial-methods.md": "Extending partial methods",
|
|
749 | 750 | "_csharpstandard/standard/namespaces.md": "This chapter defines namespaces, including how to declare them and how to use them.",
|
750 | 751 | "_csharpstandard/standard/classes.md": "This chapter covers class declarations, including all member types that can be included in classes. This includes generic classes as well as non-generic classes.",
|
751 | 752 | "_csharpstandard/standard/structs.md": "This chapter defines struct declarations. In many cases, the descriptions are defined using the differences between classes and structs.",
|
752 |
| - "_csharpstandard/standard/arrays.md": "This chapter defines arrays. It includes the rules for array variance, multi-dimensional arrays and jagged arrays.", |
| 753 | + "_csharpstandard/standard/arrays.md": "This chapter defines arrays. It includes the rules for array variance, multi-dimensional arrays, and jagged arrays.", |
| 754 | + "_csharpstandard/standard/ranges.md": "This chapter defines the index and range operators for indexing into arrays, strings, and spans.", |
753 | 755 | "_csharpstandard/standard/interfaces.md": "This chapter defines interfaces. This includes interface declarations, implementing interfaces, and explicit interface implementation.",
|
754 | 756 | "_csharpstandard/standard/enums.md": "This chapter defines the enum types in C#. Enums create a set of named constants and are represented by an underlying integral set of values.",
|
755 | 757 | "_csharpstandard/standard/delegates.md": "This chapter defines delegates, which are objects that hold type safe function pointers.",
|
|
763 | 765 | "_csharpstandard/standard/Bibliography.md": "This appendix lists external standards referenced in this specification.",
|
764 | 766 | "_csharplang/proposals/csharp-8.0/patterns.md": "This feature specification describes recursive pattern matching, where patterns can nest inside other patterns.",
|
765 | 767 | "_csharplang/proposals/csharp-8.0/default-interface-methods.md": "This feature specification describe the syntax updates necessary to support default interface methods. This includes declaring bodies in interface declarations, and supporting modifiers on declarations.",
|
766 |
| - "_csharplang/proposals/csharp-8.0/ranges.md": "This feature specification describes the syntax for ranges and indices, which support indexing individual elements of a sequence or a range of a sequence from the start or end of that sequence.", |
767 | 768 | "_csharplang/proposals/csharp-8.0/using.md": "This feature specification supports pattern based using and using declarations to simplify resource cleanup.",
|
768 | 769 | "_csharplang/proposals/csharp-9.0/covariant-returns.md": "This feature specification describes covariant return types, where overriding member declarations can return a type derived from the overridden member declaration.",
|
769 | 770 | "_csharplang/proposals/csharp-9.0/extending-partial-methods.md": "This feature specification describes extensions to partial methods. These extensions enable source generators to create or call partial methods.",
|
|
0 commit comments