Tag: #new-features

Posts tagged with #new-features

A Guide to C# 10 Global Usings

An introduction to the new global using directives feature in C# 10. Learn how this feature can help you reduce repetitive using statements and clean up the top of your C# files.

Read more

A Guide to .NET Minimal APIs

An introduction to the new Minimal APIs feature in .NET 6. Learn how to build fast, lightweight web APIs with just a few lines of code, and see how it compares to the traditional controller-based approach.

Read more

A First Look at .NET 6 and C# 10

An early look at the exciting new features coming in .NET 6 and C# 10. From Minimal APIs and Hot Reload to global usings and file-scoped namespaces, we explore the next evolution of the .NET platform.

Read more

A Guide to C# 9 Top-Level Statements

An introduction to C# 9's top-level statements feature, which allows you to write simple programs without the ceremony of a Program class and a Main method. Learn how it simplifies code and makes C# more beginner-friendly.

Read more

A Guide to C# Records

An introduction to C# 9 records, a new reference type that provides a simplified syntax for creating immutable data objects. Learn how records can help you reduce boilerplate and write more robust, data-centric code.

Read more

What's New in Python 3.9?

A look at the major new features coming in Python 3.9, including the new dictionary merge operators, more flexible type hinting, and the new zoneinfo module for timezone support.

Read more

A First Look at .NET Core 3.0

An early look at the major new features coming in .NET Core 3.0. From support for WPF and Windows Forms to the introduction of C# 8.0 with nullable reference types, we explore what makes this one of the most anticipated .NET releases ever.

Read more

What's New in C# 7.3?

A look at the small but useful new features introduced in C# 7.3, including tuple equality, enum constraints, and performance improvements for working with `in` parameters.

Read more

Getting Started with ASP.NET Core 2.0

An overview of the official release of ASP.NET Core 2.0. Learn about the major improvements, including the massive API expansion with .NET Standard 2.0 and the new Razor Pages model, which make the framework easier to use than ever.

Read more

A First Look at .NET Core 2.0

An early look at the major improvements coming in .NET Core 2.0. We explore the massive expansion of the API surface area with .NET Standard 2.0 and other features that promise to make .NET Core easier to use than ever.

Read more

What's New in C# 7.0?

A guide to the major new features introduced in C# 7.0, including tuples and deconstruction, pattern matching, and local functions. Learn how these features can make your C# code more concise and expressive.

Read more

A First Look at Python 3.6

An early look at the exciting new features coming in Python 3.6. We explore the new f-strings for improved string formatting, underscores in numeric literals, and the new dictionary implementation.

Read more

A First Look at .NET Core RC2

An early look at the major changes in .NET Core Release Candidate 2 (RC2). We explore the shift from DNX to the new dotnet CLI and the evolution of the project format, which brings us closer to the final 1.0 release.

Read more