C# Expression bodied getters and setters C# expression body is a single line expression statement. It is used to provide single life…
this
-
-
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# Local Functions C# local functions are the private methods having same type in which it is defined. Local function can be…
-
C# Named and Optional Arguments C# Named Arguments This feature allows us to associate argument name with its value at the time…
-
C# Null Propagator C# Null Propagator is an operator. It is used to check null value in an object reference chain. This…
-
C# Object Initializer C# Object Initializer is a new way to assign values at the time of object creation. It does not…
-
C# Tuples C# tuple is a data structure that is used to store sequence of elements. Tuple with n elements are known…
-
C# Partial Types C# provides a concept to write source code in separate files and compile it as a single unit. This…
-
C# Anonymous Types C# Anonymous types allow us to create an object that has read only properties. Anonymous object is an object…