├── .gitignore ├── CSharp9.sln ├── InitOnlyProperties ├── InitOnlyProperties.csproj └── Program.cs ├── NewExpressions ├── NewExpressions.csproj └── Program.cs ├── README.md ├── Records ├── Program.cs └── Records.csproj ├── TargetTyping ├── Program.cs └── TargetTyping.csproj └── global.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/.gitignore -------------------------------------------------------------------------------- /CSharp9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/CSharp9.sln -------------------------------------------------------------------------------- /InitOnlyProperties/InitOnlyProperties.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/InitOnlyProperties/InitOnlyProperties.csproj -------------------------------------------------------------------------------- /InitOnlyProperties/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/InitOnlyProperties/Program.cs -------------------------------------------------------------------------------- /NewExpressions/NewExpressions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/NewExpressions/NewExpressions.csproj -------------------------------------------------------------------------------- /NewExpressions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/NewExpressions/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/README.md -------------------------------------------------------------------------------- /Records/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/Records/Program.cs -------------------------------------------------------------------------------- /Records/Records.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/Records/Records.csproj -------------------------------------------------------------------------------- /TargetTyping/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/TargetTyping/Program.cs -------------------------------------------------------------------------------- /TargetTyping/TargetTyping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/TargetTyping/TargetTyping.csproj -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreluizsecco/CSharp9/HEAD/global.json --------------------------------------------------------------------------------