Records
2 sectionsRapid overview
Records
TL;DR
A record (C# 9) is a class or struct where the compiler generates value-based equality (Equals, GetHashCode, ==, !=, IEquatable<T>), a readable ToString, a copy constructor used by with expressions, and, for the positional form, init-only p…
Read →How it works
Q: What is a record in C#?
Read →