Explore >> Select a destination


You are here

www.daveabrock.com
| | newdevsguide.com
15.3 parsecs away

Travel
| | The C# 11 required keyword lets you reduce constructor boiler plate code and ensure that new objects have required property members set when using inline initializers.
| | csharp.christiannagel.com
7.6 parsecs away

Travel
| | C# allows writing code with positional or nominal code style. Using positional code style, constructors can be used. Object initializer belong to the nominal category. So far the nominal category was restricted because it required writable properties. This can change with C# 9. Positional Creation Positional creation is the traditional coding style we use since...
| | blog.cdemi.io
12.7 parsecs away

Travel
| | One of the new features being proposed in C# 8.0 is to introduce Records. They are essentially a very lightweight class that is a collection of fields.
| | lukemerrett.com
23.1 parsecs away

Travel
| What are Record Types? Record Types are a popular feature of F# [https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/records], also commonly found in other functional languages, that have recently been introduced to C# in version 9.0 [https://devblogs.microsoft.com/dotnet/c-9-0-on-the-record/] (released alongside .Net 5). On