├── .gitattributes ├── .gitignore ├── CSharp10Demo.sln └── CSharp10Demo ├── AnonymousWithExpressions.cs ├── CSharp10Demo.csproj ├── ConstInterpolatedStrings.cs ├── FileLevelNamespaces.cs ├── GlobalUsings.cs ├── NullParameterChecking.cs ├── Program.cs └── SemiAutoProperties.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/.gitignore -------------------------------------------------------------------------------- /CSharp10Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo.sln -------------------------------------------------------------------------------- /CSharp10Demo/AnonymousWithExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo/AnonymousWithExpressions.cs -------------------------------------------------------------------------------- /CSharp10Demo/CSharp10Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo/CSharp10Demo.csproj -------------------------------------------------------------------------------- /CSharp10Demo/ConstInterpolatedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo/ConstInterpolatedStrings.cs -------------------------------------------------------------------------------- /CSharp10Demo/FileLevelNamespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo/FileLevelNamespaces.cs -------------------------------------------------------------------------------- /CSharp10Demo/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo/GlobalUsings.cs -------------------------------------------------------------------------------- /CSharp10Demo/NullParameterChecking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo/NullParameterChecking.cs -------------------------------------------------------------------------------- /CSharp10Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo/Program.cs -------------------------------------------------------------------------------- /CSharp10Demo/SemiAutoProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/CSharp10Features/HEAD/CSharp10Demo/SemiAutoProperties.cs --------------------------------------------------------------------------------