csharplang/proposals
Charles Stoner a0b59a6768
Add proposals/csharp-8.0/shadowing-in-nested-functions.md (#4036)
* Add proposals/csharp-8.0/shadowing-in-nested-functions.md

* Use enclosing method rather than scope

* Misc.
2020-10-19 12:56:27 -07:00
..
csharp-6.0 Create empty-params-array.md 2020-09-03 14:44:12 -07:00
csharp-7.0 Fix/remove broken links (#3801) 2020-08-21 11:08:25 -04:00
csharp-7.1 Update target-typed-default.md 2019-07-30 13:23:29 -07:00
csharp-7.2 Minor grammar and typo fixes (#3370) 2020-09-16 09:18:49 -07:00
csharp-7.3 Fix typo. (#3792) 2020-08-12 08:03:52 -07:00
csharp-8.0 Add proposals/csharp-8.0/shadowing-in-nested-functions.md (#4036) 2020-10-19 12:56:27 -07:00
csharp-9.0 System.StringBuilder -> System.Text.StringBuilder (#3976) 2020-10-06 07:59:50 -07:00
inactive Add folders and READMEs 2017-01-27 11:02:27 -08:00
rejected Move old records proposals to rejected/ and rename current proposal 2020-05-30 12:24:13 -07:00
caller-argument-expression.md markdown fixes 2019-03-06 22:28:47 -08:00
constant_interpolated_strings.md Add constant interpolated strings (#3581) 2020-06-18 09:43:38 -07:00
declaration-expressions.md markdown fixes 2019-03-06 22:28:47 -08:00
discriminated-unions.md Updated records in proposal "discriminated-unions" (#4014) 2020-10-15 10:51:54 -07:00
fixed-sized-buffers.md markdown fixes 2019-03-06 22:28:47 -08:00
format.md Fix typos in format proposal 2019-04-04 14:58:14 +02:00
intptr-operators.md markdown fixes 2019-03-07 10:00:39 -08:00
intrinsics.md Fixed typos (#2167) 2019-02-12 13:45:25 -08:00
lambda-attributes.md markdown fixes 2019-03-07 10:00:39 -08:00
low-level-struct-improvements.md Proposal: Low level struct improvements (#3936) 2020-09-29 08:31:01 -07:00
null-arg-checking.md Add missing commas (#3855) 2020-09-06 10:00:20 -07:00
null-conditional-await.md markdown fixes 2019-03-07 10:00:39 -08:00
nullable-constructor-analysis.md Update nullable-constructor-analysis.md (#3794) 2020-08-13 16:29:11 -07:00
nullable-enhanced-common-type.md Add support for common type of int and double?. (#1806) 2018-09-06 16:01:33 -07:00
pointer-null-coalescing.md Added mention ??= rules 2020-07-07 09:48:49 -04:00
primary-constructors.md Create primary-constructors.md 2019-07-23 15:31:23 -07:00
proposal-template.md Remove abbreviations from the text (#68) 2017-02-13 14:59:12 -08:00
README.md Update READMEs for discussion in GitHub issues 2017-02-13 16:20:11 -08:00
readonly-locals.md fix formatting 2019-03-07 10:03:08 -08:00
repeated-attributes.md Update repeated-attributes.md (#3661) 2020-07-09 13:48:23 -07:00
static-delegates.md Fixed typos (#2167) 2019-02-12 13:45:25 -08:00
variance-safety-for-static-interface-members.md Rename Variance-safety-for-static-interface-members.md to variance-safety-for-static-interface-members.md 2020-07-19 09:26:18 -07:00

C# Language Proposals

Language proposals are living documents describing the current thinking about a given language feature.

Proposals can be either active, inactive, rejected or done. Active proposals are stored directly in the proposals folder, inactive and rejected proposals are stored in the inactive and rejected subfolders, and done proposals are archived in a folder corresponding to the language version they are part of.

Lifetime of a proposal

A proposal starts its life when the language design team decides that it might make a good addition to the language some day. Typically it will start out being active, but if we want to capture an idea without wanting to work on it right now, a proposal can also start out in the inactive subfolder. Proposals may even start out directly in the rejected state, if we want to make a record of something we don't intend to do. For instance, if a popular and recurring request is not possible to implement, we can capture that as a rejected proposal.

The proposal may start out as an idea in a discussion issue, or it may come from discussions in the Language Design Meeting, or arrive from many other fronts. The main thing is that the design team feels that it should be done, and that there's someone who is willing to write it up. Typically a member of the Language Design Team will assign themselves as a champion for the feature, tracked by a Champion issue. The champion is responsible for moving the proposal through the design process.

A proposal is active if it is moving forward through design and implementation toward an upcoming release. Once it is completely done, i.e. an implementation has been merged into a release and the feature has been specified, it is moved into a subdirectory corresponding to its release.

If a feature turns out not to be likely to make it into the language at all, e.g. because it proves unfeasible, does not seem to add enough value or just isn't right for the language, it will be rejected. If a feature has reasonable promise but is not currently being prioritized to work on, it may be declared inactive to avoid cluttering the main folder. It is perfectly fine for work to happen on inactive or rejected proposals, and for them to be resurrected later. The categories are there to reflect current design intent.

Nature of a proposal

A proposal should follow the proposal template. A good proposal should:

  • Fit with the general spirit and aesthetic of the language.
  • Not introduce subtly alternate syntax for existing features.
  • Add a lot of value for a clear set of users.
  • Not add significantly to the complexity of the language, especially for new users.

Discussion of proposals

Feedback and discussion happens in discussion issues. When a new proposal is added to the proposals folder, it should be announced in a discussion issue by the champion or proposal author.