Za vezbe:
- Vezbe 2: Yield
Korisno. Za reference:
- getter shortcut
=>
- Null-coalescing operators (
??
and??=
) - Null-conditional operators
?.
and?[]
- If
a
evaluates tonull
, the result ofa?.x
ora?[x]
isnull
. - If
a
evaluates to non-null, the result ofa?.x
ora?[x]
is the same as the result ofa.x
ora[x]
, respectively.
- If
URLs:
- https://learn.microsoft.com/en-US/dotnet/csharp/programming-guide/delegates/
- https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/lambda-expressions
- https://learn.microsoft.com/en-us/dotnet/api/system.predicate-1?view=net-7.0
- https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/events/
Odgovori na pitanja:
Advanced (totalno opciono za citanje):