csharplang/proposals
2017-09-06 13:10:02 -07:00
..
csharp-7.0 Clarify the specified semantics of a throw expression. (#661) 2017-06-06 17:51:52 -07:00
csharp-7.1 Move C# 7.1 proposals to 7.1 folder (#870) 2017-09-06 13:10:02 -07:00
csharp-8.0 Add folders and READMEs 2017-01-27 11:02:27 -08:00
inactive Add folders and READMEs 2017-01-27 11:02:27 -08:00
rejected Add folders and READMEs 2017-01-27 11:02:27 -08:00
async-streams.md Update async stream proposal based on design meeting 2017-08-30 17:32:50 -04:00
auto-prop-field-attrs.md Create auto-prop field attributes proposal specification (#25) 2017-02-09 11:55:28 -08:00
caller-argument-expression.md Typo fixes (#537) 2017-05-04 10:57:40 -07:00
conditional-ref.md Proposal for the "conditional ref expression" feature (#224) 2017-03-07 14:11:37 -08:00
covariant-returns.md Add proposal for covariant return types. (#47) 2017-02-09 13:06:45 -08:00
default-interface-methods.md Update default interface methods doc. (#585) 2017-06-05 12:56:17 -07:00
expression-variables-in-initializers.md Add some championed proposals. 2017-02-09 09:02:29 -08:00
intptr-operators.md Typo (#566) 2017-05-15 10:35:24 -07:00
lambda-attributes.md Add comment about return-targeted attributes 2017-03-29 06:35:57 -04:00
non-trailing-named-arguments.md Update non-trailing named arguments proposal (#673) 2017-06-29 09:27:56 -07:00
null-coalecing-assignment.md Add question regarding &&= to the ??= spec 2017-02-13 11:27:45 -08:00
null-conditional-await.md Update null-conditional-await.md 2017-03-15 12:25:12 -07:00
nullable-enhanced-common-type.md Rename improved-common-type.md to nullable-enhanced-common-type.md 2017-04-19 17:08:35 -07:00
nullable-reference-types.md Fix typo in the nullable reference types proposal 2017-02-03 11:18:41 +07:00
patterns.md Corrected patterns.md to use discard pattern ('_') in examples instead of star (*). (#610) 2017-06-05 12:57:57 -07:00
private-protected.md Add some championed proposals. 2017-02-09 09:02:29 -08: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-ref.md Corrected typo in readonly-ref feature summary (#672) 2017-06-11 20:52:40 -07:00
readonly_locals.md Add proposal for readonly locals 2017-04-04 14:18:15 -04:00
records.md Multiple typos (#565) 2017-05-15 10:34:23 -07:00
span-safety.md Capitalisation of ReadOnlySpan<T> (#875) 2017-09-02 07:53:10 -04:00
static-delegates.md Clarifying on some points in the static-delegates proposal. 2017-02-16 08:02:34 -08: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.