Primary constructors in C# 12 can be used in classes and structs as well as record types. Here’s how they make your code cleaner and more concise. One of the striking new features in C# 12 is the support for primary constructors. The concept of primary constructors is not new. Several programming languages including Scala, Kotlin, and OCaml provide support for integrating constructor parameters directly at the place where you declare your class. In this article, we’ll take a close look at primary constructors and how we can work with them in C# 12. To run the code examples provided in this article, you should have Visual Studio 2022 installed in your system. If you don’t already have a copy, you can download Visual Studio 2022 here. Create a console application project in Visual Studio First off, let’s create a .NET Core console application project in Visual Studio. Assuming Visual Studio 2022 is installed in your system, follow the steps outlined below to create a new .NET Core console application. Launch the Visual Studio IDE. Click on “Create new project.” In the “Create new project” window, select “Console App (.NET Core)” from the list of templates displayed. Click Next. In the “Configure your new project” window, specify the name and location for the new project. Click Next. In the “Additional information” window shown next, choose “.NET 8.0 (Long Term Support)” as the framework version you want to use. Click Create. We’ll use this .NET 8 console application project to work with primary constructors in the subsequent sections of this article. What are primary constructors? Primary constructors enable you to declare constructors in a class or a struct with parameters available throughout the body of the type. Using primary constructors, you can create constructors for your class or struct without writing code—i.e. without explicitly declaring private data members and implementing constructors to assign the values of the constructor parameters to those data members. The following code snippet illustrates a primary constructor declared inside a struct. public readonly struct Rectangle(double x, double y) { //Members of the struct Rectangle } Below is a simple implementation of a primary constructor declared inside a class. public class Rectangle(double x, double y) { //Members of the class Rectangle } The primary constructor parameters are scoped to the class as a whole. They are accessible to all instance members except secondary constructors. In C#, the compiler infers which private fields we require and captures the corresponding values. Consider the following piece of code that implements a primary constructor for a class named Customer. public class Customer(int id, string FirstName, string LastName) { //Implement the class members here } The properties pertaining to this class will be initialized automatically using the parameters of the primary constructor. Pros and cons of primary constructors in C# Primary constructors in C# offer three key benefits. Simplified syntax: By using primary constructors, you can declare and initialize properties directly within the constructor parameters, reducing code duplication. Easy initialization: You can take advantage of primary constructors to initialize properties of a class with default values or specific values passed as constructor parameters. Immutability: You can leverage the init modifier on properties initialized in the primary constructor to ensure that they are read-only after object initialization. Primary constructors in C# have a number of downsides as well. Reduced flexibility: Primary constructors are designed to be simple, which can limit their flexibility. They may not be suitable when complex initialization logic is needed or when additional actions are required, such as validation, scheduling, or logging. Less explicit code: Reducing boilerplate code is a good practice, but it can also make the code less explicit. Inexperienced developers may need help understanding how properties are initialized or how the constructor works. Compatibility issues: Integrating the new syntax of primary constructors seamlessly into an existing codebase could be challenging, especially if the codebase is large and complex. Limited control over access modifiers: A primary constructor offers less control over access modifiers than a traditional constructor. Hence primary constructors may be unsuitable in scenarios that require fine-grained control over accessibility. Learning curve: Because primary constructors are new to the C# programming language, your developers may need time to get up to speed using it, which could slow down the development of your project. Using overloaded constructors with a primary constructor in C# You can use overloaded constructors in any class that has a primary constructor. The following code snippet illustrates how you can create multiple constructors in a class having a primary constructor. public class User(int id, string userName, string password) { //Implement the members of the class here }// Other members of the class } Using primary constructors in record types vs. classes in C# While both record and classes support primary constructors, there are subtle differences in the behavior. For example, here is how you can define a record type that uses a primary constructor: public record AuthorRecord(int Id, string firstName, string lastName, string address, string phone); And here is how you can define a class that uses a primary constructor: public record AuthorClass(int Id, string firstName, string lastName, string address, string phone); You can create an instance of the above record type as shown below. var authorRecord = AuthorRecord(int Id, string firstName, string lastName, string address, string phone); However, if you attempt to assign values to the data members of the record type in the way shown below, you will encounter a compiler error. authorRecord.Id = 1; By contrast, you can create an instance of the above class type and assign values to its data members as shown below, without any compiler error. var authorClass = AuthorClass(int Id, string firstName, string lastName, string address, string phone); authorClass.Id = 1; Use dependency injection in primary constructors in C# You can take advantage of primary constructors when implementing dependency injection in your C# application. Let us understand this with an example. The following code illustrates how we can implement constructor injection in C#. public class AuthorService { private readonly IAuthorRepository _authorRepository; public AuthorService(IAuthorRepository authorRepository) { _authorRepository = authorRepository; } public async Task<IEnumerable<Author>> GetAll() { return await _authorRepository.GetAll(); } } Finally, note how primary constructors can be used to make your code crisper and cleaner, as shown in the following piece of code. public class AuthorService (IAuthorRepository authorRepository) { public async Task<IEnumerable<Author>> GetAll() { return await authorRepository.GetAll(); } } Although primary constructors were initially introduced in C# 9, they were limited to record types only. With C# 12, you can use primary constructors in record types, classes, and structures, helping you write boilerplate code that is cleaner and more concise. Related content feature What is Rust? Safe, fast, and easy software development Unlike most programming languages, Rust doesn't make you choose between speed, safety, and ease of use. Find out how Rust delivers better code with fewer compromises, and a few downsides to consider before learning Rust. By Serdar Yegulalp Nov 20, 2024 11 mins Rust Programming Languages Software Development how-to Kotlin for Java developers: Classes and coroutines Kotlin was designed to bring more flexibility and flow to programming in the JVM. Here's an in-depth look at how Kotlin makes working with classes and objects easier and introduces coroutines to modernize concurrency. By Matthew Tyson Nov 20, 2024 9 mins Java Kotlin Programming Languages news F# 9 adds nullable reference types Latest version of Microsoft’s functional .NEt programming language provides a type-safe way to handle reference types that can have null as a valid value. By Paul Krill Nov 18, 2024 3 mins Microsoft .NET Programming Languages Software Development news Go language evolving for future hardware, AI workloads The Go team is working to adapt Go to large multicore systems, the latest hardware instructions, and the needs of developers of large-scale AI systems. By Paul Krill Nov 15, 2024 3 mins Google Go Generative AI Programming Languages Resources Videos