/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/csharp/language-reference/operators/snippets/with-expression/Program.cs
18 строк
422 B
Petr Kulikov
C# 9 reference update: inheritance and a with expression (#21484)
11 ноя 2020, 19:47
Не верифицирован
11 ноя 2020, 19:47
133f08e
Код
Авторство
О чём код?
using System; namespace with_expression { class Program { static void Main(string[] args) { WithExpressionBasicExample.Main(); Console.WriteLine(); InheritanceExample.Main(); Console.WriteLine(); ExampleWithReferenceType.Main(); Console.WriteLine(); UserDefinedCopyConstructorExample.Main(); } } }