HomeCSharpNull-Conditional Operator and Delegates

Null-Conditional Operator and Delegates

C# 6.0 Features Series

When you want to invoke an delegate , you might want to perform null check so that you wont get the null reference exception .

In C# 6.0 , we can use the Null-Conditional operator when invoking the delegate to perform the null check and do the invocation . The only catch is that , you cannot do the straightforward way of calling a delegate when followed by the ?. operator . You will need to use the Invoke method as shown below.

FirstNameChanged?.Invoke(this,args)

It is also said to be one of the easiest and the thread safe way to check for nulls before triggering an event.

    1 Comment

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...