HOME > Development > What New in C# 8.0- Must Know for Every Developer

What New in C# 8.0- Must Know for Every Developer

  • Development
  • Apr 30, 2025
SynopsisWhats New in C# 8.0: Must Know for Every Developer, available...
What New in C# 8.0- Must Know for Every Developer  No.1

Whats New in C# 8.0: Must Know for Every Developer, available at Free, has an average rating of 4.4, with 32 lectures, based on 22 reviews, and has 2214 subscribers.

You will learn about Learn all New Features of C# 8.0 with Demo Interface in C# 8 so many new features. Now, Interface members can have body. They can also have static members, static constructor, access modifiers, etc.. You can avoid the Null Reference Exception completely from your application. The compiler in C# 8 will tell you the possibility of Error at compile time Forget the old way of using switch statement, Instead learn the new and modern way to write switch statement without case and default keywords. You will learn how to Reduce the number of If statement using the Property Pattern Tuple pattern allows us to match the complex logic in very simple manner and using very less code Learn about new Null-Coalescing Assignment Operator Learn about how to use Local Static Methods in C# 8 You can get the array (sequence) value using index from end. There is a new symbol to get the data from end and reduce your code length. Now getting a Subsequence from main Sequence is very simple using the Range operator And So much more This course is ideal for individuals who are C# Developers who wants to stay up to date with Latest features of C#. or C# Professionals who wants to learn writing the High Quality Code or C# Professionals who wants to improve the application Architecture with latest features. or C# Developers who wants to achieve more in less code It is particularly useful for C# Developers who wants to stay up to date with Latest features of C#. or C# Professionals who wants to learn writing the High Quality Code or C# Professionals who wants to improve the application Architecture with latest features. or C# Developers who wants to achieve more in less code.

Enroll now: Whats New in C# 8.0: Must Know for Every Developer

Summary

Title: Whats New in C# 8.0: Must Know for Every Developer

Price: Free

Average Rating: 4.4

Number of Lectures: 32

Number of Published Lectures: 32

Number of Curriculum Items: 32

Number of Published Curriculum Objects: 32

Original Price: Free

Quality Status: approved

Status: Live

What You Will Learn

  • Learn all New Features of C# 8.0 with Demo
  • Interface in C# 8 so many new features. Now, Interface members can have body. They can also have static members, static constructor, access modifiers, etc..
  • You can avoid the Null Reference Exception completely from your application. The compiler in C# 8 will tell you the possibility of Error at compile time
  • Forget the old way of using switch statement, Instead learn the new and modern way to write switch statement without case and default keywords.
  • You will learn how to Reduce the number of If statement using the Property Pattern
  • Tuple pattern allows us to match the complex logic in very simple manner and using very less code
  • Learn about new Null-Coalescing Assignment Operator
  • Learn about how to use Local Static Methods in C# 8
  • You can get the array (sequence) value using index from end. There is a new symbol to get the data from end and reduce your code length.
  • Now getting a Subsequence from main Sequence is very simple using the Range operator
  • And So much more
  • Who Should Attend

  • C# Developers who wants to stay up to date with Latest features of C#.
  • C# Professionals who wants to learn writing the High Quality Code
  • C# Professionals who wants to improve the application Architecture with latest features.
  • C# Developers who wants to achieve more in less code
  • Target Audiences

  • C# Developers who wants to stay up to date with Latest features of C#.
  • C# Professionals who wants to learn writing the High Quality Code
  • C# Professionals who wants to improve the application Architecture with latest features.
  • C# Developers who wants to achieve more in less code
  • C# 8.0 was introduced with DotNet Core 3.0 with so many great improvements and features. There are so many changes in Interfaces, Pattern Matching, Handling Null Reference exceptions, and added some new Operators.

    All these C# 8 features are must learn and use in your projects. C# 8 Features will help you to write complex logic with minimum code.

    C# Latest Features (C# 8.0)

  • Interface:
    Interfaces in C# 8.0 allows us to write member body, static fields, static constructor, constants, access modifiers (public, private, internal, etc) and so many other features.

  • Nullable Reference Type:
    Nullable reference type allows us to avoid Null Reference Exception at the compile time. C# developers can enable/disable the nullable features on project/file levels. If the Nullable reference type is enabled then the compiler will give a warning whenever there are possibilities of a null error.

  • Switch Pattern Matching:
    Switch pattern matching allows the C# developers to write the switch statement without using the case, or default keywords. This will allow us to focus only on logic rather than unnecessary keywords.

  • Property Pattern Matching

  • Tuple Pattern Matching:

    Tuple pattern matching in C# allows us to write complex logic with very less code. This is easy to write, read and clean code.

  • Null-Coalescing Operator:

    Null-Coalescing Operator is a new operator added in C# 8. This Null-Coalescing Operator allows the C# developers to assign the right side expression only if the left-hand side value is null. (Very Useful)

  • Indices and Range:
    There is a new way to get the sequence value from the end instead of array.length-1.And the Range is a new operator. The Range operator is used to get the subsequence from a sequence with start and end boundaries.

  • Static Local Functions

  • Course Curriculum

    Chapter 1: Introduction

    Lecture 1: Introduction

    Chapter 2: Interface in C# 8

    Lecture 1: How we used to work with Interfaces before C# 8.0

    Lecture 2: New features of Interfaces in C# 8.0

    Lecture 3: Demo: Default Interface Members

    Lecture 4: Demo: Interface Inheritance with Explicit Implementation

    Lecture 5: Demo: Working with Static Members in Interfaces

    Lecture 6: Demo: Static Constructor in Interfaces

    Lecture 7: Demo: Using Access Modifiers on Interface Members

    Lecture 8: Demo: Using Constants in Interface

    Chapter 3: Nullable Reference Type in C# 8.0

    Lecture 1: Introduction to Null Reference Type

    Lecture 2: Demo: Whats the Problem if we are not using Null Reference Type

    Lecture 3: Demo: How to Enable/Disable Null Reference Type in C# 8 (2 Ways)

    Lecture 4: Demo: Working with Null Reference Type

    Lecture 5: Demo: Methods with Null Reference Type

    Lecture 6: Demo: Enable/Disable Null Reference Type in a Specific File

    Chapter 4: Pattern Matching: switch Pattern (New Way of Writing Switch Statement)

    Lecture 1: Demo: Switch Pattern in C# 8.0 | The New Way of Writing Switch Statement

    Lecture 2: Demo: Switch Pattern in C# 8.0 With Enum | Example 2

    Chapter 5: Pattern Matching: Property Pattern

    Lecture 1: Demo: What is Property Pattern Matching? Learn with an Example.

    Lecture 2: Demo: How to Use Multiple Properties for Pattern Matching

    Lecture 3: Demo: Nested Property Pattern Matching

    Lecture 4: Demo: Less Than (<) and Greater Than (>) Operators In Property Pattern Matching

    Lecture 5: Demo: Property Pattern Matching With Switch Pattern

    Chapter 6: Pattern Matching: Tuple Pattern

    Lecture 1: Demo: Tuple Pattern Matching in C# 8.0

    Chapter 7: Null-Coalescing Assignment Operator (??=)

    Lecture 1: Demo: Null-Coalescing Assignment with Field

    Lecture 2: Demo: Null-Coalescing Assignment with Collection

    Chapter 8: Static Local Functions (Methods)

    Lecture 1: Demo: Using Static Local Function

    Lecture 2: Demo: Using Static Local Function Example 2

    Chapter 9: Indices and Range

    Lecture 1: Introduction to Index and How to Use New Operator ^ (Index From End)

    Lecture 2: Demo: Practical Example of Index and New Operator ^ (Index From End)

    Lecture 3: Demo: Working with Range (..) Operator in C# | Must Learn

    Lecture 4: Demo: 4 Ways to Use Range Operator in C# Application

    Lecture 5: Demo: Assigning Indices and Rang operators to C# Variable

    Instructors

  • What New in C# 8.0- Must Know for Every Developer  No.2
    Nitish Kumar
    Microsoft MVP (Most Valuable Professional) | Instructor
  • Rating Distribution

  • 1 stars: 2 votes
  • 2 stars: 0 votes
  • 3 stars: 3 votes
  • 4 stars: 7 votes
  • 5 stars: 10 votes
  • Frequently Asked Questions

    How long do I have access to the course materials?

    You can view and review the lecture materials indefinitely, like an on-demand channel.

    Can I take my courses with me wherever I go?

    Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!