Terminology:
[ASP.NET Core Reference](https://tymz.notion.site/ASP-NET-Core-Reference-e758ecb8592a42a489c7ea8a7a195f39)
Questions:
new
operator work under the hoodSkipped topics/keywords:
Boxing and unboxing
Anonymous types:
Using the new operator with object initialiser syntax. Avoids declaring types. Used frequently in LINQ queries
var v = new { Amount = 108, Message = "Hello" };
dynamic
type
await foreach
out
, ref
and in
keywords
yield return
extension methods
— you can extend types with further methods. Pretty cool