
Both C# is null and == null are used to check if a variable or object is null, but they work slightly differently.
is nullchecks if the variable or object is of a nullable type and has a value of null.== nullcompares the variable or object to the literal value of null.
For example,
1string? str = null;
2if (str is null) {
3 // this block will execute
4}
5
6if (str == null) {
7 // this block will also execute
8}
is null is a feature of C# 8.0 and above, so it will not work in older versions of C#.
is operator is recommended
One of the main benefits of using is null is that it is more readable and self-explanatory. When reading code, it is immediately clear that the developer is checking for a null value, without having to infer the meaning from the comparison operator. This can make the code easier to understand for both the original developer and anyone else who may need to read or maintain the code in the future.
See recommendation by Jared Parsons who is working on the C# compiler, language and runtime.
https://twitter.com/jaredpar/status/1229850618749050880 I was trying to be good but now that you’ve called me out … You should always use “x is null” and “x is object” for null and non-null reference checks respectively. They’re demonstrably better than all other alternatives.
Another advantage of is null is that it is more specific and less prone to errors. When using == null, the developer may accidentally compare a non-nullable variable to null, which will cause a runtime error.\ However, is null can only be used with nullable types, which eliminates this possibility and makes the code more reliable.
Additionally, is null can also be used as a pattern matching expression. This allows developers to simplify their code by combining null checking with variable assignment, as shown in the following example:
1string? s = GetString();
2if (s is null)
3 Console.WriteLine("string is null");
4else
5 Console.WriteLine(s);
Related articles

Mar 25, 2026 · 14 min read
The new Microsoft Testing Platform for .NET: An introduction with practical samples and migration guidance
Testing in .NET has historically been associated with VSTest. That choice was reasonable for a long time because VSTest offered broad …

Mar 17, 2026 · 15 min read
GitHub Copilot - Custom Agents for Full-Stack Teams: A Practical Operating Model for .NET, React and Azure
GitHub Copilot custom agents allow teams to define specialized AI assistants, each with its own role, tool access and behavioral boundaries. …

Mar 10, 2026 · 15 min read
.NET NuGet Trusted Publishing with GitHub Actions
Publishing NuGet packages has traditionally required one uncomfortable compromise: a long-lived API key had to exist somewhere in the …
Let's Work Together
Looking for an experienced Platform Architect or Engineer for your next project? Whether it's cloud migration, platform modernization or building new solutions from scratch - I'm here to help you succeed.

Comments