Каковы правильные номера версий для C#?

Каковы правильные номера версий для C#? Что получилось когда? Почему я не могу найти ответы о C# 3.5?

Этот вопрос в первую очередь, чтобы помочь тем, кто ищет ответ, используя неправильный номер версии, например, C# 3.5. Надежда состоит в том, что любой, кто не сможет найти ответ с неправильным номером версии, найдет этот вопрос и затем выполнит поиск с правильным номером версии.

17 ответов

Решение

История версий языка C#:

Это версии C#, известные на момент написания этой статьи:

В ответ на вопрос ОП:

Каковы правильные номера версий для C#? Что получилось когда? Почему я не могу найти ответы о C# 3.5?

C# 3.5 не существует - причина путаницы в том, что C# 3.0 присутствует в.NET 3.5. Однако язык и инфраструктура работают независимо друг от друга - как и CLR, которая имеет версию 2.0 для.NET 2.0 - 3.5, в.NET 4 вводится CLR 4.0, несмотря на пакеты обновления. CLR в.NET 4.5 имеет ряд улучшений, но управление версиями неясно: в некоторых местах его можно назвать CLR 4.5 ( эта страница MSDN использовалась, например, для ссылки на него), ноEnvironment.Version собственность все еще сообщает 4.0.xxx.

Более подробная информация о взаимосвязи между языком, средой исполнения и версиями фреймворка доступна на сайте C# в Depth. Сюда входит информация о том, какие функции C# 3.0 можно использовать при нацеливании на.NET 2.0. (Если кто-то хочет внести весь контент в этот вики-ответ, он может это сделать.)

По состоянию на 3 мая 2017 г. языковая команда C# создала историю версий и функций C# в своем репозитории github: функции, добавленные в языковые версии C#. Также есть страница, которая отслеживает будущие и недавно реализованные языковые функции.

Это то же самое, что и большинство ответов здесь, но для удобства составлено в виде таблицы, и для полноты изложения оно имеет версии Visual Studio и.NET.

╔════════════╦════════════╦══════════════╦═════════════╦══════════════╗
║ C# version ║ VS version ║ .NET version ║ CLR version ║ Release date ║
╠════════════╬════════════╬══════════════╬═════════════╬══════════════╣
║    1.0     ║    2002    ║    1.0       ║     1.0     ║   Feb 2002   ║
║    1.2     ║    2003    ║    1.1       ║     1.1     ║   Apr 2003   ║
║    2.0     ║    2005    ║    2.0       ║     2.0     ║   Nov 2005   ║
║            ║            ║    3.0       ║     2.0     ║   Nov 2006   ║
║    3.0     ║    2008    ║    3.5       ║     2.0     ║   Nov 2007   ║
║    4.0     ║    2010    ║    4.0       ║     4       ║   Apr 2010   ║
║    5.0     ║    2012    ║    4.5       ║     4       ║   Aug 2012   ║
║    5.0     ║    2013    ║    4.5.1     ║     4       ║   Oct 2013   ║
║            ║            ║    4.5.2     ║     4       ║   May 2014   ║
║    6.0     ║    2015    ║    4.6       ║     4       ║   Jul 2015   ║
║            ║            ║    4.6.1     ║     4       ║   Nov 2015   ║
║            ║            ║    4.6.2     ║     4       ║   Aug 2016   ║
║    7.0     ║    2017    ║              ║             ║   Mar 2017   ║
║            ║            ║    4.7       ║     4       ║   May 2017   ║
║    7.1     ║ 2017(v15.3)║              ║             ║   Aug 2017   ║
║            ║            ║    4.7.1     ║     4       ║   Oct 2017   ║
║    7.2     ║ 2017(v15.5)║              ║             ║   Dec 2017   ║
║            ║            ║    4.7.2     ║     4       ║   Apr 2018   ║
║    7.3     ║ 2017(v15.7)║              ║             ║   May 2018   ║
╚════════════╩════════════╩══════════════╩═════════════╩══════════════╝

Примечание. В наши дни.NET-разработка в значительной степени не зависит от VS, корреляции между версиями нет. Обратитесь к разделу " .NET Framework версии и зависимости" для получения дополнительной информации.

Самая большая проблема при работе с номерами версий C# заключается в том, что он не связан с версией.NET Framework, что, по-видимому, связано с синхронизированными выпусками между Visual Studio и.NET Framework.

Версия C# фактически привязана к компилятору, а не к фреймворку. Например, в Visual Studio 2008 вы можете написать C# 3.0 и целевой.NET Framework 2.0, 3.0 и 3.5. Номенклатура C# 3.0 описывает версию синтаксиса кода и поддерживаемые функции так же, как ANSI C89, C90, C99 описывают синтаксис / функции кода для C.

Взгляните на Mono, и вы увидите, что Mono 2.0 (в основном реализованная версия 2.0.NET Framework из спецификаций ECMA) поддерживает синтаксис и функции C# 3.0.

  • C# 1.0 с Visual Studio.NET

  • C# 2.0 с Visual Studio 2005

  • C# 3.0 с Visual Studio 2008

  • C# 4.0 с Visual Studio 2010

  • C# 5.0 с Visual Studio 2012

  • C# 6.0 с Visual Studio 2015

  • C# 7.0 с Visual Studio 2017

ВЕРСИЯ_____СПЕЦИФИКАЦИЯ ЯЗЫКА______MICROSOFT COMPILER

C# 1.0/ 1.2____Декабрь 2001?/ 2003?___________Январь 2002?

C# 2.0_______ Сентябрь 2005________________Ноябрь 2005?

C# 3.0_______ Май 2006_____________________Ноябрь 2006?

C# 4.0_______ Март 2009 (черновик)______________Апрель 2010?

C# 5.0; выпущен с.NET 4.5 в августе 2012 года

С 6,0; выпущен с.NET 4.6 2015

С # 7,0; выпущен с.NET 4.7 2017

История версий C#:

C# - это простой и мощный объектно-ориентированный язык программирования, разработанный Microsoft.

C# сильно изменился с момента его первого выпуска в 2002 году. C# был представлен с.NET Framework 1.0.

В следующей таблице перечислены важные функции, представленные в каждой версии C#.

И последняя версия C# доступна в версиях C#.

Я суммировал большинство версий в этой таблице. Не хватает только версий ASP.NET Core. Я также добавил разные версии ASP.NET MVC.

Обратите внимание, что ASP.NET 5 был переименован в ASP.NET Core 1.0, а ASP.NET MVC 6 переименован в ASP.NET Core MVC 1.0.0. Я считаю, что это изменение произошло где-то в январе 2016 года.

Я включил в таблицу дату выпуска ASP.NET 5 RC1, но мне еще предстоит включить ASP.NET core 1.0 и другие версии ядра, потому что я не смог найти точные даты выпуска. Подробнее о сроках выпуска ASP.NET Core вы можете прочитать здесь: Когда планируется выпуск ASP.NET Core 1.0 (ASP.NET 5 / vNext)?

Версия

Вы можете проверить последние версии C# здесьВерсии C

Сравнивая статьи MSDN "Что нового в языке C# 2.0 и компиляторе" и " Что нового в Visual C# 2005", можно сделать вывод, что "C# major_version.minor_version" придуман в соответствии с нумерацией версий компилятора.

Существует C# 1.2, соответствующий.NET 1.1 и VS 2003, а также называется Visual C#.NET 2003.

Но в дальнейшем Microsoft перестала увеличивать младшие версии (после точки) или иметь их, кроме нуля, 0, Хотя следует отметить, что C#, соответствующий.NET 3.5, назван в msdn.microsoft.com как "Visual C# 2008 Service Pack 1".

Существует два параллельных наименования: по основной нумерации версий.NET/ компилятора и по нумерации Visual Studio.

C# 2.0 является синонимом Visual C# 2005

C# 3.0 соответствует (или, вернее, может быть целью):

C# 1.0 - Visual Studio.NET 2002

Classes
Structs
Interfaces
Events
Properties
Delegates
Expressions
Statements
Attributes
Literals

C# 1.2 - Visual Studio.NET 2003

Dispose in foreach
foreach over string specialization
C# 2 - Visual Studio 2005
Generics
Partial types
Anonymous methods
Iterators
Nullable types
Getter/setter separate accessibility
Method group conversions (delegates)
Static classes
Delegate inference

C# 3 - Visual Studio 2008

Implicitly typed local variables
Object and collection initializers
Auto-Implemented properties
Anonymous types
Extension methods
Query expressions
Lambda expression
Expression trees
Partial methods

C# 4 - Visual Studio 2010

Dynamic binding
Named and optional arguments
Co- and Contra-variance for generic delegates and interfaces
Embedded interop types ("NoPIA")

C# 5 - Visual Studio 2012

    Asynchronous methods
    Caller info attributes

C# 6 - Visual Studio 2015

Draft Specification online
Compiler-as-a-service (Roslyn)
Import of static type members into namespace
Exception filters
Await in catch/finally blocks
Auto property initializers
Default values for getter-only properties
Expression-bodied members
Null propagator (null-conditional operator, succinct null checking)
String interpolation
nameof operator
Dictionary initializer

C# 7.0 - Visual Studio 2017

Out variables
Pattern matching
Tuples
Deconstruction
Discards
Local Functions
Binary Literals
Digit Separators
Ref returns and locals
Generalized async return types
More expression-bodied members
Throw expressions

C# 7.1 - Visual Studio 2017 версии 15.3

Async main
Default expressions
Reference assemblies
Inferred tuple element names
Pattern-matching with generics

C# 7.2 - Visual Studio 2017 версии 15.5

Span and ref-like types
In parameters and readonly references
Ref conditional
Non-trailing named arguments
Private protected accessibility
Digit separator after base specifier

C# 7.3 - Visual Studio 2017 версии 15.7

System.Enum, System.Delegate and unmanaged constraints.
Ref local re-assignment: Ref locals and ref parameters can now be reassigned with the ref assignment operator (= ref).
Stackalloc initializers: Stack-allocated arrays can now be initialized, e.g. Span<int> x = stackalloc[] { 1, 2, 3 };.
Indexing movable fixed buffers: Fixed buffers can be indexed into without first being pinned.
Custom fixed statement: Types that implement a suitable GetPinnableReference can be used in a fixed statement.
Improved overload candidates: Some overload resolution candidates can be ruled out early, thus reducing ambiguities.
Expression variables in initializers and queries: Expression variables like out var and pattern variables are allowed in field initializers, constructor initializers and LINQ queries.
Tuple comparison: Tuples can now be compared with == and !=.
Attributes on backing fields: Allows [field: …] attributes on an auto-implemented property to target its backing field.

C# 8.0 -.NET Core 3.0 и Visual Studio 2019 версии 16.3

Nullable reference types: express nullability intent on reference types with ?, notnull constraint and annotations attributes in APIs, the compiler will use those to try and detect possible null values being dereferenced or passed to unsuitable APIs.
Default interface members: interfaces can now have members with default implementations, as well as static/private/protected/internal members except for state (ie. no fields).
Recursive patterns: positional and property patterns allow testing deeper into an object, and switch expressions allow for testing multiple patterns and producing corresponding results in a compact fashion.
Async streams: await foreach and await using allow for asynchronous enumeration and disposal of IAsyncEnumerable<T> collections and IAsyncDisposable resources, and async-iterator methods allow convenient implementation of such asynchronous streams.
Enhanced using: a using declaration is added with an implicit scope and using statements and declarations allow disposal of ref structs using a pattern.
Ranges and indexes: the i..j syntax allows constructing System.Range instances, the ^k syntax allows constructing System.Index instances, and those can be used to index/slice collections.
Null-coalescing assignment: ??= allows conditionally assigning when the value is null.
Static local functions: local functions modified with static cannot capture this or local variables, and local function parameters now shadow locals in parent scopes.
Unmanaged generic structs: generic struct types that only have unmanaged fields are now considered unmanaged (ie. they satisfy the unmanaged constraint).
Readonly members: individual members can now be marked as readonly to indicate and enforce that they do not modify instance state.
Stackalloc in nested contexts: stackalloc expressions are now allowed in more expression contexts.
Alternative interpolated verbatim strings: @$"..." strings are recognized as interpolated verbatim strings just like $@"...".
Obsolete on property accessors: property accessors can now be individually marked as obsolete.
Permit t is null on unconstrained type parameter

[источник]: https://github.com/dotnet/csharplang/blob/master/Language-Version-History.md

Version     .NET Framework  Visual Studio   Important Features
C# 1.0  .NET Framework 1.0/1.1  Visual Studio .NET 2002     

    Basic features

C# 2.0  .NET Framework 2.0  Visual Studio 2005  

    Generics
    Partial types
    Anonymous methods
    Iterators
    Nullable types
    Private setters (properties)
    Method group conversions (delegates)
    Covariance and Contra-variance
    Static classes

C# 3.0  .NET Framework 3.0\3.5  Visual Studio 2008  

    Implicitly typed local variables
    Object and collection initializers
    Auto-Implemented properties
    Anonymous types
    Extension methods
    Query expressions
    Lambda expressions
    Expression trees
    Partial Methods

C# 4.0  .NET Framework 4.0  Visual Studio 2010  

    Dynamic binding (late binding)
    Named and optional arguments
    Generic co- and contravariance
    Embedded interop types

C# 5.0  .NET Framework 4.5  Visual Studio 2012/2013     

    Async features
    Caller information

C# 6.0  .NET Framework 4.6  Visual Studio 2013/2015     

    Expression Bodied Methods
    Auto-property initializer
    nameof Expression
    Primary constructor
    Await in catch block
    Exception Filter
    String Interpolation

C# 7.0  .NET Core 2.0   Visual Studio 2017  

    out variables
    Tuples
    Discards
    Pattern Matching
    Local functions
    Generalized async return types
    Numeric literal syntax improvements
C# 8.0  .NET Core 3.0   Visual Studio 2019  

    
    Readonly members
    Default interface methods
    Pattern matching enhancements:
        Switch expressions
        Property patterns
        Tuple patterns
        Positional patterns
    Using declarations
    Static local functions
    Disposable ref structs
    Nullable reference types
    Asynchronous streams
    Asynchronous disposable
    Indices and ranges
    Null-coalescing assignment
    Unmanaged constructed types
    Stackalloc in nested expressions
    Enhancement of interpolated verbatim strings

C# 8.0 - это последняя версия C#. Он поддерживается только в.NET Core 3.x и более новых версиях. Многие из новейших функций требуют функций библиотеки и времени выполнения, представленных в.NET Core 3.x.

В следующей таблице перечислены целевая платформа с версией и версией C# по умолчанию.

Источник - управление версиями языка C#

Я искал краткую историю версий .NET, C#, CLR, VS наряду с ключевыми языковыми функциями.

Так как я не смог найти ни одной актуальной таблицы, содержащей всю необходимую мне информацию в одном месте, я объединил детали из документации Microsoft в то, что я пытался сохранить в краткой таблице, содержащей то, что я искал.

Он доступен здесь: https://mantinband.github.io/dotnet-shmotnet/

Вероятно, у меня есть некоторые ошибки или отсутствует информация, поэтому, пожалуйста, не стесняйтесь открывать проблему или вносить свой вклад здесь: https://github.com/mantinband/dotnet-shmotnet

Краткий обзор:

Список всех версий языка C# можно найти в справочнике Microsoft .

Предварительная версия: C# 11.0 .NET Core 7.0 Visual Studio 2022, обновление 1

READ MORE

  • Разрешить новые строки в «дырах» интерполированных строк
  • Шаблоны списка
  • Проверка нулевого значения параметра
  • Взаимодействие со ссылочными типами, допускающими значение NULL
  • Общие атрибуты
  • ключевое слово поля
  • Статические абстракции в интерфейсах
  • Объявления под или шаблоны
  • Записи и инициализация
  • Дискриминированные союзы
  • Диапазон параметров T
  • Операторы как выражения
  • Деревья выражений
  • Тип системных расширений

История версий C# (пересмотренная):

Это версии C#, известные на момент написания этой статьи:

Самая последняя версия - 9.0, выпущенная в 2020 году в .NET 5.0 и включенная в Visual Studio 2019 версии 16.8. Mono - это бесплатный проект с открытым исходным кодом для разработки кросс-платформенного компилятора и среды выполнения (т.е. виртуальной машины) для языка.

Другие вопросы по тегам