Working space for ECMA-TC49-TG2, the C# standard committee.
- The text is licensed under the Creative Commons license.
- The code for our tools is licensed under the MIT license.
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.
The branch draft-v9
has Draft PRs and Issues for C# 9.
The branch draft-v8
has the evolving draft text for C# 8.
The branch standard-v7
has the ECMA C# 7 standard text, in Markdown format. For the official standard, see the ECMA site.
The branch standard-v6
has the ECMA C# 6 standard text, in Markdown format. For the official standard, see the ECMA site.
The branch standard-v5
has the ECMA C# 5 standard text, converted to Markdown. For the official standard, see the ECMA site.
This version is stored in this branch as a base markdown version to compare with future updated standard texts.
There are HTML comments (<!-- comment -->
) within the standard for the sake of tooling. Some help in the process of converting the standard to Word, and others are for automated testing purposes.
Some automated test comments refer to error codes that are specific to the Microsoft C# compiler (e.g., "CS0509") to test that compilation fails as expected, where an example presents deliberately-invalid code. These error codes are not part of the standard, and should not be viewed as any kind of compliance check for other compilers.
More broadly, no comments should be regarded as being part of the standard itself.
A home for administrative files.
For now, it contains separate logs for past (V6, V7), present (V8), and future (V9) work going on to add new features.
This folder contains tools related to maintaining and converting the ECMA C# spec (ECMA-334).
This folder contains an ANTLR grammar-extraction tool and support files.
-
ExtractGrammar.exe - the simple-minded grammar-extraction program. It processes only one md file.
-
GetGrammar.bat - the Windows batch file that invokes ExtractGrammar on each md file of the C# specification that contains ANTLR grammar blocks, in clause order, inserting some md headers and such along the way. The result is a file called grammar.md, which is a direct replacement for that file in the specification repo.
A minor wart: There is an extraneous blank line at the beginning of each of the lexical, syntactic, and unsafe grammars. At a glance, the amount of programming effort probably needed to stop this from happening seems to be huge compared with simply deleting those three lines manually.
This tool is used by the committee to produce a Word format of the standard for submission to ECMA or ISO. This is run on each PR to ensure we can always produce the correct format when needed.
This tool creates the outline using section numbers, and updates all links to the correct section number. Its purpose is to ensure that all references continue to point to the correct section, and that the table of contents shows the correct section numbers for all sections.
Contributors that add sections should follow the guidance in our contributor guide to ensure that links to new sections are incorporated correctly. This tool is run on each PR in a dry-run
mode to ensure that the changes will parse correctly. When a PR is merged, the tool runs to update all section links.
These two tools work in tandem to test that the examples presented work (or fail, where invalid code is presented) as expected.
ExampleExtractor populates a temporary directory with code and metadata extracted from the standard. ExampleTester then compiles and runs (where applicable) that code. The test-examples.sh script provides an easy way of running both tools together.
This project is supported by the .NET Foundation.
The README.md file in the standard
folder contains a detailed table of contents for the C# standard.