C# 9: Putting it all together with a scavenger hunt
Here we are, friends: our last post in our C# 9 deep dive series. We’ve discussed a lot of topics, so I thought it’d be fun to bundle all we’ve learned into a single post. (You can think of this as a CliffsNotes of the 10,000 or so words I’ve written about C# 9 so far.)
So, let’s go on a scavenger hunt! (I know I have readers from different countries and customs—where I’m from, it’s a fun game where you have to run around outside and find a number of miscellaneous things from a list). So this is how us nerds do it: inside, with air conditioning, geeking out about features that aren’t fully released yet.
I’ll be focusing on the how, not the why—you can see all my other posts for the full details on the concepts.
This is the sixth—and last!—post on my C# 9 deep dive series.
- Post 1 - Init-only features
- Post 2 - Records
- Post 3 - Pattern matching
- Post 4 - Top-level programs
- Post 5 - Target typing and covariant returns
- Post 6 (this post) - Putting it all together with a scavenger hunt
This post covers the following topics.
- Our scavenger hunt: the list
- The low-hanging fruit: top-level programs
- Init-only properties
- Init accessors and readonly fields
- Records
- Use
with
expressions - Use
with
expressions with inheritance - Use value-based equality and inheritance
- Positional records
- Improved pattern matching
- Simple type patterns
- Relational patterns
- Logical patterns
- Target typing with
new
expressions - Covariant returns
- And that’s it, friends
Our scavenger hunt: the list
Here’s our list for our scavenger hunt. We’ll check it off as we go!
(Target typing ??
and ?:
and data member simplification have been removed from the list, as they do not compile in today’s previews.)
- Init-only properties
- Init accessors and readonly fields
- Records
with
expressions- Value-based equality
- Positional records
with
expressions and inheritance- Value-based equality and inheritance
- Top-level programs
- Improved pattern matching
- Simple type patterns
- Relational patterns
- Logical patterns
- Improved target typing
- Target-typed
new
expressions - Covariant returns
The low-hanging fruit: top-level programs
For a quick win, let’s make a top-level program. If you remember, this allows us to run a program without that pesky Main
method.
using System;
Console.WriteLine("I am Groot.");
Well, that was easy! Knock one off the list.
- Init-only properties
- Init accessors and readonly fields
- Records
with
expressions- Value-based equality
- Positional records
with
expressions and inheritance- Value-based equality and inheritance
Top-level programs- Improved pattern matching
- Simple type patterns
- Relational patterns
- Logical patterns
- Improved target typing
- Target-typed
new
expressions - Covariant returns
Init-only properties
With init-only properties, we can use object initializers with immutable fields.
Let’s create an Avenger
class:
public class Avenger
{
public string FirstName { get; init; }
public string LastName { get; init; }
}
Now, we can use them with object initializers in C# 9.
using System;
var ironMan = new Avenger { FirstName = "Tony", LastName = "Stark" };
var hulk = new Avenger { FirstName = "Bruce", LastName = "Banner" };
var blackWidow = new Avenger { FirstName = "Natasha", LastName = "Romanova"};
Console.WriteLine($"Iron Man is {ironMan.FirstName} {ironMan.LastName}.");
Console.WriteLine($"The Hulk is {hulk.FirstName} {hulk.LastName}.");
Console.WriteLine($"The Black Widow is {blackWidow.FirstName} {blackWidow.LastName}.");
Now we have two more off the list, hooray!
Init-only properties- Init accessors and readonly fields
- Records
with
expressions- Value-based equality
- Positional records
with
expressions and inheritance- Value-based equality and inheritance
Top-level programs- Improved pattern matching
- Simple type patterns
- Relational patterns
- Logical patterns
- Improved target typing
- Target-typed
new
expressions - Covariant returns
Init accessors and readonly fields
As we’ve learned, init
accessors can only be called when you initialize. If you try it after, you’ll be greeted with this:
FirstName cannot be assigned to -- it is read-only
With these init
accessors, you can also mutate read-only fields—which you previously could do with constructors. With only changing the Avengers
class, do it this way:
class Avenger
{
private readonly string firstName;
private readonly string lastName;
public string FirstName
{
get => firstName;
init => firstName = (value ?? throw new ArgumentNullException(nameof(FirstName)));
}
public string LastName
{
get => lastName;
init => lastName = (value ?? throw new ArgumentNullException(nameof(LastName)));
}
}
OK, one more gone. On to records!
Init-only propertiesInit accessors and readonly fields- Records
with
expressions- Value-based equality
- Positional records
with
expressions and inheritance- Value-based equality and inheritance
Top-level programs- Improved pattern matching
- Simple type patterns
- Relational patterns
- Logical patterns
- Improved target typing
- Target-typed
new
expressions - Covariant returns
Records
Let’s convert our object to a record. This allows an entire object-like construct to be immutable and act like a value.
Change the Avenger
object to a record and our program should still run as expected:
record Avenger
{
public string FirstName { get; init; }
public string LastName { get; init; }
}
Use with expressions
With records, we can leverage non-destructive mutation, or a way to create new values from existing ones to resemble new state. We can make a copy of a record, and then change what we need. What if the Hulk had a little boy, who joins him and also turns green when he’s angry?
Change the main part of the program to this:
using System;
var hulk = new Avenger { FirstName = "Bruce", LastName = "Banner"};
var babyHulk = hulk with { FirstName = "Baby" };
Console.WriteLine($"The Hulk is {hulk.FirstName} {hulk.LastName}.");
Console.WriteLine($"The Baby Hulk is {babyHulk.FirstName} {babyHulk.LastName}.");
Use with expressions with inheritance
Records support inheritance. Structs do not. We can even use it with the with
expression.
Change your program to this, and it works through the power of a hidden virtual method, which I showed off when discussing records in-depth.
using System;
var hulk = new Hulk { FirstName = "Bruce", LastName = "Banner", AngerLevel = 90};
var babyHulk = hulk with { FirstName = "Baby" };
Console.WriteLine($"The Hulk is {hulk.FirstName} {hulk.LastName}, " +
$"and anger level is {hulk.AngerLevel}.");
Console.WriteLine($"The Baby Hulk is {babyHulk.FirstName} {babyHulk.LastName}, " +
$"and anger level is {babyHulk.AngerLevel}.");
record Hulk : Avenger
{
public int AngerLevel { get; init; }
}
record Avenger
{
public string FirstName { get; init; }
public string LastName { get; init; }
}
Use value-based equality and inheritance
When it comes to records, C# 9 takes care of value-based equality for you through an EqualityContract
. Every derived record overrides it and for equal comparison to occur the two objects must both have an EqualityContract.
Because we are being immutable, we can create a new record, set the value back, and see the object comparison returns equal.
using System;
// init-only properties
var hulk = new Hulk { FirstName = "Bruce", LastName = "Banner", AngerLevel = 90};
var babyHulk = hulk with { FirstName = "Baby" };
Console.WriteLine(Object.ReferenceEquals(hulk, babyHulk)); // false
Console.WriteLine(Object.Equals(hulk, babyHulk)); // false
var backToRegularHulk = babyHulk with { FirstName = "Bruce" };
Console.WriteLine(Object.Equals(hulk, backToRegularHulk)); // true
record Hulk : Avenger
{
public int AngerLevel { get; init; }
}
record Avenger
{
public string FirstName { get; init; }
public string LastName { get; init; }
}
Positional records
We can take a positional approach, where we hand out data from constructor arguments and we can use deconstruction to extract data.
using System;
var hulk = new Avenger("Bruce", "Banner");
var (first, last) = hulk;
Console.WriteLine(first);
Console.WriteLine(last);
public record Avenger
{
string FirstName;
string LastName;
public Avenger(string firstName, string lastName)
=> (FirstName, LastName) = (firstName, lastName);
public void Deconstruct(out string firstName, out string lastName)
=> (firstName, lastName) = (FirstName, LastName);
}
That should do it for records! How are we doing so far?
Init-only propertiesInit accessors and readonly fieldsRecordswith expressionsValue-based equalityPositional recordswith
expressions and inheritanceValue-based equality and inheritanceTop-level programs- Improved pattern matching
- Simple type patterns
- Relational patterns
- Logical patterns
- Improved target typing
- Target-typed
new
expressions - Covariant returns
Improved pattern matching
C# 9 offers improved pattern matching for simple type patterns, relational patterns, and logical patterns.
In this example, we will calculate a monthly insurance cost depending on the Hulk’s AngerLevel
. Our records look like this:
record Hulk : Avenger
{
public int AngerLevel { get; init; }
}
record Avenger
{
public string FirstName { get; init; }
public string LastName { get; init; }
}
Simple type patterns
Using simple type patterns, we don’t need that discard (_
) operator to just declare the type. Now, we can just say Hulk => 1000
in CalculateInsuranceCost
:
static int CalculateInsuranceCost(object hulk) =>
hulk switch
{
Hulk t when t.AngerLevel > 90 => 10000,
Hulk t when t.AngerLevel < 20 => 100,
Hulk => 1000,
_ => throw new ArgumentException("Not a known hulk", nameof(hulk))
;
Relational patterns
With relational patterns, we can use <
, >
, and so on with pattern matching. Take a look at this CalculateInsuranceCost
method:
static int CalculateInsuranceCost(Hulk hulk) =>
hulk.AngerLevel switch
{
> 90 => 10000,
< 20 => 100,
_ => 1000,
};
Logical patterns
With logical patterns, you can use and
, or
, and not
:
static int CalculateInsuranceCost(Hulk hulk) =>
hulk.AngerLevel switch
{
> 90 => 10000,
> 20 and < 90 => 100,
_ => 1000,
};
How’s our scavenger hunt going? Are we done yet?
Init-only propertiesInit accessors and readonly fieldsRecordswith expressionsValue-based equalityPositional recordswith
expressions and inheritanceValue-based equality and inheritanceTop-level programsImproved pattern matchingSimple type patternsRelational patternsLogical patterns- Improved target typing
- Target-typed
new
expressions - Covariant returns
Target typing with new expressions
Great! Let’s scratch another quick one off the list with some target typing.
Let’s have an Avenger
class like so:
public class Avenger
{
private string _firstName;
private string _lastName;
public Avenger(string firstName, string lastName)
{
_firstName = firstName;
_lastName = lastName;
}
}
Now we can use it with new
expressions:
using System;
Avenger ironMan = new ("Tony", "Stark");
Avenger hulk = new ("Bruce", "Banner");
Avenger blackWidow = new ("Natasha", "Romanova");
We can also see its benefit when creating collections:
using System;
var avengerList = new List<Avenger>
{
new ("Tony", "Stark"),
new ("Bruce", "Banner"),
new ("Natasha", "Romanova"),
};
Covariant returns
One item left: covariant returns. If you read the last post, this should be familiar to you. With return type covariance, you can override a base class method (that has a less-specific type) with one that returns a more specific type. To return some new objects, you could try this.
public virtual Avenger GetHero()
{
// this is the parent (or base) class
return new Avenger();
}
public override Hulk GetHero()
{
// better!
return new Hulk();
}
We did it!
Init-only propertiesInit accessors and readonly fieldsRecordswith expressionsValue-based equalityPositional recordswith
expressions and inheritanceValue-based equality and inheritanceTop-level programsImproved pattern matchingSimple type patternsRelational patternsLogical patternsImproved target typingTarget-typednew
expressionsCovariant returns
And that’s it, friends
Thank you so much for reading and providing feedback on all these articles. This won’t be the last I write about C#, obviously, but it does conclude my first pass on C# 9 features. As always, I’m excited to hear how things are going for you—don’t be shy!