You can follow the playlist here: • C# Using Directives
Introduction:
Available as from C# 6.
2 variants that provides member or element access iff operand is not null, otherwise null is returned.
?. : applies a member access
?[] : applies an element access
Null conditional operators are short circuiting.
If one operation in a chain of conditional member or element access operations returns null, the rest of the chain doesn't execute.
E.g. A?.B?[C]
B is not evaluated if A is null.
C is not evaluated if either A or B is null.
Nesta página do site você pode assistir ao vídeo on-line Null Conditional Operators | C# duração online em boa qualidade , que foi baixado pelo usuário SharpDev 14 Janeiro 2022, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 240 vezes e gostou 5 espectadores. Boa visualização!