C# Pattern Matching C# pattern matching is a feature that allows us to perform matching on data or any object. We can…
this
-
-
C# auto-initialize property C# auto-initialize property is a feature, introduced in 6.0. It allows us to initialize properties without creating a constructor.…
-
C# Exception Filters C# Exception Filters is a feature of C# programming language. It is introduced in version C# 6.0. It allows…
-
C# Query Expression C# Query Expression is an expression that is written by using LINQ query syntax. The LINQ (Language Integrated Query)…
-
C# Expression bodied Constructors and Finalizers C# expression body is a single line expression statement. It is used to provide single life…
-
C# Ref returns and locals C# ref keyword allows a method to return reference rather than a value. In C# prior versions,…
-
C# Expression bodied getters and setters C# expression body is a single line expression statement. It is used to provide single life…
-
C# String Interpolation C# string interpolation allows us to insert variables into the string. It uses simple syntax and looks like a…
-
C# Iterators C# iterator is a method. It is used to iterate the elements of a collection, array or list. An iterator…
-
C# Caller Info Attributes C# provides caller info attributes to get information about the caller method. By using Caller Info attributes, we…